-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (31 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, Command
import pybloomd
# Get the long description by reading the README
try:
readme_content = open("README.rst").read()
except:
readme_content = ""
# Create the actual setup method
setup(name='pybloomd',
version=pybloomd.__version__,
description='Client library to interface with multiple bloomd servers',
long_description=readme_content,
author='Armon Dadgar',
author_email='biz@kiip.me',
maintainer='Armon Dadgar',
maintainer_email='biz@kiip.me',
url="https://github.com/kiip/bloom-python-driver/",
license="MIT License",
keywords=["bloom", "filter","client","bloomd"],
py_modules=['pybloomd'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
]
)