Skip to content

Commit 6a3ca47

Browse files
authored
Merge branch 'master' into channels2
2 parents 1eb443e + 523dd15 commit 6a3ca47

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed

setup.py

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,58 +5,59 @@
55

66
from setuptools import setup, find_packages
77

8-
with open('README.rst') as readme_file:
8+
with open("README.rst") as readme_file:
99
readme = readme_file.read()
1010

1111
readme = ""
1212

13-
with open('HISTORY.rst') as history_file:
13+
with open("HISTORY.rst") as history_file:
1414
history = history_file.read()
1515

1616
requirements = [
17-
'graphql-core>=2.0<3',
17+
"graphql-core>=2.0<3",
1818
# TODO: put package requirements here
1919
]
2020

2121
setup_requirements = [
22-
'pytest-runner',
22+
"pytest-runner",
2323
# TODO(graphql-python): put setup requirements (distutils extensions,
2424
# etc.) here
2525
]
2626

2727
test_requirements = [
28-
'pytest',
28+
"pytest",
2929
# TODO: put package test requirements here
3030
]
3131

3232
setup(
33-
name='graphql-ws',
34-
version='0.2.0',
33+
name="graphql-ws",
34+
version="0.3.0",
3535
description="Websocket server for GraphQL subscriptions",
36-
long_description=readme + '\n\n' + history,
36+
long_description=readme + "\n\n" + history,
3737
author="Syrus Akbary",
3838
author_email='me@syrusakbary.com',
3939
url='https://github.com/graphql-python/graphql-ws',
4040
packages=find_packages(include=['graphql_ws', 'graphql_ws.*']),
41+
author_email="me@syrusakbary.com",
4142
include_package_data=True,
4243
install_requires=requirements,
4344
license="MIT license",
4445
zip_safe=False,
45-
keywords=['graphql', 'subscriptions', 'graphene', 'websockets'],
46+
keywords=["graphql", "subscriptions", "graphene", "websockets"],
4647
classifiers=[
47-
'Development Status :: 2 - Pre-Alpha',
48-
'Intended Audience :: Developers',
49-
'License :: OSI Approved :: MIT License',
50-
'Natural Language :: English',
48+
"Development Status :: 2 - Pre-Alpha",
49+
"Intended Audience :: Developers",
50+
"License :: OSI Approved :: MIT License",
51+
"Natural Language :: English",
5152
"Programming Language :: Python :: 2",
52-
'Programming Language :: Python :: 2.6',
53-
'Programming Language :: Python :: 2.7',
54-
'Programming Language :: Python :: 3',
55-
'Programming Language :: Python :: 3.3',
56-
'Programming Language :: Python :: 3.4',
57-
'Programming Language :: Python :: 3.5',
53+
"Programming Language :: Python :: 2.6",
54+
"Programming Language :: Python :: 2.7",
55+
"Programming Language :: Python :: 3",
56+
"Programming Language :: Python :: 3.3",
57+
"Programming Language :: Python :: 3.4",
58+
"Programming Language :: Python :: 3.5",
5859
],
59-
test_suite='tests',
60+
test_suite="tests",
6061
tests_require=test_requirements,
6162
setup_requires=setup_requirements,
6263
)

0 commit comments

Comments
 (0)