Skip to content

Commit 263215f

Browse files
committed
Add gevent as an extra_requires.
You can now `pip install "graphql-core[gevent]"`
1 parent 8e73feb commit 263215f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ def run_tests(self):
5454

5555
install_requires=['six>=1.10.0'],
5656
tests_require=['pytest>=2.7.3', 'gevent==1.1b5', 'six>=1.10.0'],
57-
57+
extras_require={
58+
'gevent': [
59+
'gevent==1.1b5'
60+
]
61+
},
5862
cmdclass={'test': PyTest},
5963
)

0 commit comments

Comments
 (0)