Skip to content

Commit 231bc91

Browse files
authored
add setup.py
1 parent eaa3c61 commit 231bc91

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

setup.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)