Skip to content

Commit 009fc3f

Browse files
committed
Updated to stable version 1.0 - Fixed #2
1 parent 342f08b commit 009fc3f

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

setup.py

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
11
from setuptools import setup, find_packages
22

33
required_packages = [
4-
'graphql-core>=1.0',
5-
'webob',
6-
'graphql-server-core>=1.0.dev'
4+
'graphql-core>=1.0', 'webob', 'graphql-server-core>=1.0.dev'
75
]
86

9-
tests_require = [
10-
'pytest>=2.7.3',
11-
'mako'
12-
]
7+
tests_require = ['pytest>=2.7.3', 'mako']
138

149
setup(
1510
name='WebOb-GraphQL',
16-
version='1.0.dev20170404001',
17-
description='Adds GraphQL support to your WebOb (Pyramid/Pylons/...) application',
11+
version='1.0',
12+
description=
13+
'Adds GraphQL support to your WebOb (Pyramid/Pylons/...) application',
1814
long_description=open('README.rst').read(),
1915
url='https://github.com/graphql-python/webob-graphql',
2016
download_url='https://github.com/graphql-python/webob-graphql/releases',
@@ -43,5 +39,4 @@
4339
tests_require=tests_require,
4440
include_package_data=True,
4541
zip_safe=False,
46-
platforms='any',
47-
)
42+
platforms='any', )

0 commit comments

Comments
 (0)