-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (26 loc) · 893 Bytes
/
setup.py
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
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="blobstash",
version="0.1.0",
description="BlobStash client",
long_description=long_description,
author="Thomas Sileo",
author_email="[email protected]",
url="https://git.sr.ht/~tsileo/blobstash-python",
packages=["blobstash.docstore", "blobstash.base", "blobstash.filetree"],
license="MIT",
zip_safe=False,
install_requires=["requests", "jsonpatch"],
python_requires=">=3.6",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="blobstash DocStore client JSON Lua document store",
)