-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (40 loc) · 1.15 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import find_packages, setup
with open("blobs3/version.txt") as ifp:
VERSION = ifp.read().strip()
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name="blobs3",
version=VERSION,
packages=find_packages(),
install_requires=[
"boto3",
"fastapi",
"pydantic",
"web3",
],
extras_require={
"dev": ["black", "mypy", "isort"],
"distribute": ["setuptools", "twine", "wheel"],
},
description="blobs3: Blob storage with web3 access control",
long_description=long_description,
long_description_content_type="text/markdown",
author="Moonstream",
author_email="engineering@moonstream.to",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
],
python_requires=">=3.8",
entry_points={
"console_scripts": [
"blobs3=blobs3.cli:main",
]
},
package_data={"blobs3": ["version.txt"]},
include_package_data=True,
)