-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 694 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 694 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
26
from setuptools import find_packages, setup
VERSION = "0.0.4"
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name="burrowkv",
version=VERSION,
description="key-value store",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
author="Yusuf",
author_email="contact@yusuf.im",
url="https://github.com/iunary/burrowkv",
license="MIT",
install_requires=[],
keywords=["key value store", "kv", "key-value"],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)