-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 760 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 760 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
25
from setuptools import setup, find_packages
with open("requirements.txt") as fd:
install_requires = fd.read().splitlines()
setup(
name="madaf",
version="0.0.1",
description="Super fast key-value database similar to shelve",
long_description=open("README.rst").read(),
keywords="database",
author="JJ Ben-Joseph",
author_email="etz@memoriesofzion.com",
python_requires=">=3.6",
url="https://www.github.com/etz4ai/madaf",
license="Apache",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
],
packages=find_packages(),
install_requires=install_requires,
tests_require=["pytest"],
)