|
2 | 2 |
|
3 | 3 |
|
4 | 4 | setup( |
5 | | - name="graphql-python-subscriptions", |
6 | | - version="0.1.0", |
7 | | - author="Heath Ballard", |
8 | | - author_email="heath.ballard@gmail.com", |
9 | | - description=("A port of apollo-graphql subscriptions for python, using\ |
10 | | - gevent websockets, promises, and redis"), |
11 | | - license="MIT", |
12 | | - keywords="graphql websockets concurrent subscriptions", |
13 | | - url="https://github.com/hballard/graphql-python-subscriptions", |
| 5 | + name='graphql-subscriptions', |
| 6 | + version='0.1.3', |
| 7 | + author='Heath Ballard', |
| 8 | + author_email='heath.ballard@gmail.com', |
| 9 | + description=('A port of apollo-graphql subscriptions for python, using\ |
| 10 | + gevent websockets, promises, and redis'), |
| 11 | + license='MIT', |
| 12 | + keywords='graphql websockets concurrent subscriptions', |
| 13 | + url='https://github.com/hballard/graphql-python-subscriptions', |
14 | 14 | packages=find_packages(exclude=['tests']), |
15 | 15 | long_description=open('README.rst').read(), |
16 | 16 | classifiers=[ |
17 | | - "Development Status :: 3 - Alpha", |
| 17 | + 'Development Status :: 3 - Alpha', |
18 | 18 | 'Intended Audience :: Developers', |
19 | | - "Topic :: Software Development :: Libraries", |
20 | | - "Environment :: Web Environment", |
21 | | - "Programming Language :: Python :: 2", |
22 | | - "Programming Language :: Python :: 2.7", |
23 | | - "License :: OSI Approved :: MIT License" |
| 19 | + 'Topic :: Software Development :: Libraries', |
| 20 | + 'Environment :: Web Environment', |
| 21 | + 'Programming Language :: Python :: 2', |
| 22 | + 'Programming Language :: Python :: 2.7', |
| 23 | + 'License :: OSI Approved :: MIT License' |
24 | 24 | ], |
25 | 25 | install_requires=[ |
26 | 26 | 'gevent-websocket', |
27 | 27 | 'redis', |
28 | 28 | 'Promises' |
29 | | - ], |
| 29 | + ], |
30 | 30 | include_package_data=True |
31 | 31 | ) |
0 commit comments