-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (47 loc) · 1.48 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
from setuptools import find_packages, setup
setup(
name='serverwamp',
version='1.1.2',
description=('Components that add Web Application Messaging Protocol '
'features to WebSocket servers.'),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=(
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
'Framework :: AsyncIO',
'Framework :: Trio',
),
install_requires=(
'dataclasses~=0.6;python_version<"3.7"',
'msgpack~=1.0.0'
),
extras_require={
'docs': (
'Sphinx==3.0.3',
)
},
keywords=(
'WAMP', 'WebSockets', 'aiohttp', 'RPC', 'pubsub', 'broker', 'dealer',
'ASGI'
),
python_requires=">=3.6",
author='Justin Turner Arthur',
author_email='[email protected]',
url='https://github.com/JustinTArthur/serverwamp',
license='MIT',
packages=find_packages(exclude=('tests',)),
package_data={
'serverwamp': ('py.typed',),
},
project_urls = {
"Documentation": "https://serverwamp.readthedocs.io/",
}
)