File tree 1 file changed +6
-11
lines changed
1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
3
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'
7
5
]
8
6
9
- tests_require = [
10
- 'pytest>=2.7.3' ,
11
- 'mako'
12
- ]
7
+ tests_require = ['pytest>=2.7.3' , 'mako' ]
13
8
14
9
setup (
15
10
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' ,
18
14
long_description = open ('README.rst' ).read (),
19
15
url = 'https://github.com/graphql-python/webob-graphql' ,
20
16
download_url = 'https://github.com/graphql-python/webob-graphql/releases' ,
43
39
tests_require = tests_require ,
44
40
include_package_data = True ,
45
41
zip_safe = False ,
46
- platforms = 'any' ,
47
- )
42
+ platforms = 'any' , )
You can’t perform that action at this time.
0 commit comments