forked from webtoucher/simple-socket-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 1006 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
setup(name='simple-socket-server',
version='1.8',
url='https://github.com/webtoucher/simple-socket-server',
license='BSD-3-Clause',
author='Alexey Kuznetsov',
author_email='mirakuru@webtoucher.ru',
description='Simple TCP socket server with select',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
packages=['simple_socket_server'],
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'event-bus~=1.0.2',
],
zip_safe=False)