File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -17,21 +17,21 @@ def finalize_options(self):
17
17
self .test_suite = True
18
18
19
19
def run_tests (self ):
20
- #import here, cause outside the eggs aren't loaded
20
+ # import here, cause outside the eggs aren't loaded
21
21
import pytest
22
22
errno = pytest .main (self .pytest_args )
23
23
sys .exit (errno )
24
24
25
+
25
26
setup (
26
- name = 'graphqllib ' ,
27
+ name = 'graphql-core ' ,
27
28
version = '0.1a0' ,
28
-
29
29
description = 'GraphQL implementation for Python' ,
30
30
31
- url = 'https://github.com/dittos/graphqllib ' ,
31
+ url = 'https://github.com/graphql-python/graphql-core ' ,
32
32
33
- author = 'Taeho Kim ' ,
34
- author_email = 'dittos ' '@' 'gmail.com ' ,
33
+ author = 'GraphQL Python ' ,
34
+ author_email = 'me ' '@' 'jh.gg ' ,
35
35
36
36
license = 'MIT' ,
37
37
@@ -53,7 +53,7 @@ def run_tests(self):
53
53
packages = find_packages (exclude = ['tests' ]),
54
54
55
55
install_requires = [],
56
- tests_require = ['pytest>=2.7.3' ],
56
+ tests_require = ['pytest>=2.7.3' , 'gevent==1.1b5' ],
57
57
58
58
cmdclass = {'test' : PyTest },
59
59
)
You can’t perform that action at this time.
0 commit comments