2021-07-19 10:31:18 +00:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
2021-11-10 14:17:36 +00:00
|
|
|
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(
|
2021-11-10 14:17:36 +00:00
|
|
|
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",
|
|
|
|
"fastapi",
|
|
|
|
"moonstreamdb",
|
|
|
|
"humbug",
|
|
|
|
"pydantic",
|
|
|
|
"pyevmasm",
|
|
|
|
"python-dateutil",
|
|
|
|
"python-multipart",
|
|
|
|
"uvicorn",
|
|
|
|
"web3",
|
2021-09-01 12:03:44 +00:00
|
|
|
],
|
2021-07-19 10:31:18 +00:00
|
|
|
extras_require={
|
2021-11-10 14:05:13 +00:00
|
|
|
"dev": ["black", "isort", "mypy", "types-requests", "types-python-dateutil"],
|
2021-07-19 10:31:18 +00:00
|
|
|
"distribute": ["setuptools", "twine", "wheel"],
|
|
|
|
},
|
2021-11-10 14:17:36 +00:00
|
|
|
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",
|
2021-11-10 14:17:36 +00:00
|
|
|
entry_points={"console_scripts": ["mnstr=moonstreamapi.admin.cli:main"]},
|
2021-07-19 10:31:18 +00:00
|
|
|
)
|