moonstream/moonstreamapi/setup.py

49 wiersze
1.4 KiB
Python
Czysty Zwykły widok Historia

2021-07-19 10:31:18 +00:00
from setuptools import find_packages, setup
from moonstreamapi.version import MOONSTREAMAPI_VERSION
2021-07-19 10:31:18 +00:00
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name="moonstreamapi",
version=MOONSTREAMAPI_VERSION,
2021-07-19 10:31:18 +00:00
packages=find_packages(),
2021-09-01 12:03:44 +00:00
install_requires=[
2021-11-10 18:10:38 +00:00
"appdirs",
"boto3",
"bugout>=0.1.19",
2023-05-02 14:56:17 +00:00
"moonstream-entity>=0.0.5",
2023-01-26 15:21:36 +00:00
"fastapi",
2023-03-08 17:06:48 +00:00
"moonstreamdb>=0.3.3",
2021-11-10 18:10:38 +00:00
"humbug",
"pydantic",
"pyevmasm",
"python-dateutil",
"python-multipart",
"python-slugify",
2021-11-10 18:10:38 +00:00
"uvicorn",
2023-04-26 14:55:13 +00:00
"web3>=5.30.0, <6",
2021-09-01 12:03:44 +00:00
],
2021-07-19 10:31:18 +00:00
extras_require={
"dev": ["black", "isort", "mypy", "types-requests", "types-python-dateutil"],
2021-07-19 10:31:18 +00:00
"distribute": ["setuptools", "twine", "wheel"],
},
package_data={"moonstreamapi": ["py.typed"]},
2021-07-19 10:31:18 +00:00
zip_safe=False,
description="The Bugout blockchain inspector API.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Bugout.dev",
author_email="engineering@bugout.dev",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
],
url="https://github.com/bugout-dev/moonstream",
entry_points={"console_scripts": ["mnstr=moonstreamapi.admin.cli:main"]},
2021-07-19 10:31:18 +00:00
)