-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 827 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, Command
setup(name='pybloomg',
version="2.1.3",
description='Client library to interface with bloomg server',
author='Thomas Wang',
author_email='thomas@kiip.me',
maintainer='Thomas Wang',
maintainer_email='thomas@kiip.me',
license="MIT License",
keywords=["bloom", "filter","client","bloomg"],
packages=['pybloomg'],
py_modules=['pybloomg'],
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",
]
)