We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaa3c61 commit 231bc91Copy full SHA for 231bc91
setup.py
@@ -0,0 +1,17 @@
1
+
2
+from setuptools import setup, find_packages
3
+setup(
4
+ name='redisbloom',
5
+ version='0.1.0',
6
7
+ description='RedisBloom Python Client',
8
+ url='https://github.com/redislabs/redisbloom-py',
9
+ packages=find_packages(),
10
+ install_requires=['redis', 'hiredis'],
11
+ classifiers=[
12
+ 'Intended Audience :: Developers',
13
+ 'License :: OSI Approved :: BSD License',
14
+ 'Programming Language :: Python :: 2.7',
15
+ 'Topic :: Database'
16
+ ]
17
+)
0 commit comments