forked from slazarov/python-signalr-client
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (29 loc) · 1.09 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
#!/usr/bin/python
from setuptools import setup, find_packages
install_requires = \
['requests>=2.18.4',
'websockets>=4.0.1'
]
setup(
name='signalr-client-aio',
version='0.0.1.6.2',
author='Stanislav Lazarov',
author_email='[email protected]',
license='MIT',
url='https://github.com/slazarov/python-signalr-client',
packages=find_packages(exclude=['tests*']),
install_requires=install_requires,
description='Simple python SignalR client using asyncio.',
download_url='https://github.com/slazarov/python-signalr-client.git',
keywords=['signalr', 'sginalr-weboscket', 'signalr-client', 'signalr-asyncio', 'signalr-aio'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)