moonstream/clients/python/setup.py

40 wiersze
1.2 KiB
Python

from setuptools import find_packages, setup
2021-11-24 09:42:59 +00:00
from moonstream.version import MOONSTREAM_CLIENT_VERSION
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name="moonstream",
2021-11-24 09:42:59 +00:00
version=MOONSTREAM_CLIENT_VERSION,
packages=find_packages(),
package_data={"moonstream": ["py.typed"]},
2022-10-26 11:29:25 +00:00
install_requires=["requests", "pydantic", "dataclasses; python_version=='3.6'"],
extras_require={
2022-10-27 12:18:34 +00:00
"aws": ["boto3"],
"dev": [
"black",
"mypy",
2021-11-24 09:42:59 +00:00
"isort",
"wheel",
"types-requests",
"types-dataclasses",
],
"distribute": ["setuptools", "twine", "wheel"],
},
description="Moonstream: Open source blockchain analytics",
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",
],
url="https://github.com/bugout-dev/moonstream",
)