-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.04 KB
/
setup.py
File metadata and controls
34 lines (32 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
34
from setuptools import setup
VERSION = "0.0.11"
BASE_CVS_URL = "http://github.com/daedalus/bloomfilter"
setup(
name="fastBloomFilter",
packages=[
"fastBloomFilter",
],
version=VERSION,
author="Dario Clavijo",
author_email="dclavijo@protonmail.com",
install_requires=[x.strip() for x in open("requirements.txt").readlines()],
url=BASE_CVS_URL,
download_url=f"{BASE_CVS_URL}/tarball/{VERSION}",
test_suite="tests",
tests_require=[
x.strip() for x in open("requirements_test.txt").readlines()
],
keywords=[],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
description=(
"A fast and simple probabilistic bloom filter that supports compression"
),
long_description=open("README.md", "r+").read(),
long_description_content_type="text/markdown",
)