Skip to content

Commit 8070dcb

Browse files
committed
Fixed naming error on main package as well as install instructions
1 parent 5fd8cb5 commit 8070dcb

7 files changed

Lines changed: 19 additions & 19 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
include README.md
2-
include LICENSE.txt
2+
include LICENSE

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ Very initial implementation. Currently only works with Python 2. No tests yet.
1111

1212
## Installation
1313
```
14-
$ pip install graphql-python-subscriptions
14+
$ pip install graphql-subscriptions
1515
```

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ Installation
2121

2222
::
2323

24-
$ pip install graphql-python-subscriptions
24+
$ pip install graphql-subscriptions
File renamed without changes.

graphql-python-subscriptions/subscription_transport_ws.py renamed to graphql_subscriptions/subscription_transport_ws.py

File renamed without changes.

setup.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,30 @@
22

33

44
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',
1414
packages=find_packages(exclude=['tests']),
1515
long_description=open('README.rst').read(),
1616
classifiers=[
17-
"Development Status :: 3 - Alpha",
17+
'Development Status :: 3 - Alpha',
1818
'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'
2424
],
2525
install_requires=[
2626
'gevent-websocket',
2727
'redis',
2828
'Promises'
29-
],
29+
],
3030
include_package_data=True
3131
)

0 commit comments

Comments
 (0)