Skip to content

Commit

Permalink
Make gevent mandatory for install
Browse files Browse the repository at this point in the history
We use it in the CLI tools and it's pretty expected here.
  • Loading branch information
spladug committed Aug 9, 2019
1 parent 777bb59 commit 8ac34f1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,17 @@
packages=find_packages(exclude=["tests", "tests.*"]),
python_requires=">=3.6",
setup_requires=["setuptools_scm"],
install_requires=["posix_ipc>=1.0.0", "pyjwt>=1.6.0", "requests>=2.21.0", "thrift>=0.12.0"],
install_requires=[
"posix_ipc>=1.0.0",
"pyjwt>=1.6.0",
"requests>=2.21.0",
"thrift>=0.12.0",
"gevent>=1.3",
],
extras_require={
"amqp": ["kombu>=4.0.0"],
"cassandra": ["cassandra-driver>=3.13.0"],
"cqlmapper": ["cqlmapper>=0.1.0"],
"gevent": ["gevent>=1.3"],
"memcache": ["pymemcache>=1.3.0,<=2.0.0"],
"pyramid": ["pyramid>=1.9.0"],
"redis": ["redis>=2.10.0,<=3.0.0"],
Expand Down

0 comments on commit 8ac34f1

Please sign in to comment.