-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
56 lines (51 loc) · 1.34 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup
with open('README.rst', encoding='utf-8') as file:
long_description = file.read()
install_requires = [
'aiohttp',
'aioredis',
'click',
'structlog',
'websockets',
]
tests_require = install_requires + [
'aioresponses',
'pytest',
'pytest-asyncio',
'lintlizard',
]
setup(
name='socketshark',
version='0.5.0',
url='http://github.com/closeio/socketshark',
license='MIT',
description='WebSocket message router',
long_description=long_description,
test_suite='tests',
tests_require=tests_require,
platforms='any',
install_requires=install_requires,
extras_require={
'prometheus': 'prometheus-async',
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=[
'socketshark',
'socketshark.backend',
'socketshark.metrics',
],
entry_points={
'console_scripts': [
'socketshark = socketshark.__main__:run',
],
},
)