moonstream/datasets/nfts/setup.py

54 wiersze
1.5 KiB
Python

2021-09-25 16:39:30 +00:00
from setuptools import find_packages, setup
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name="nfts",
2021-09-25 16:50:43 +00:00
version="0.0.2",
2021-09-25 16:39:30 +00:00
author="Bugout.dev",
author_email="engineers@bugout.dev",
license="Apache License 2.0",
description="Tools to build, update, and interact with the Moonstream NFTs dataset",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bugout-dev/moonstream",
platforms="all",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.6",
packages=find_packages(),
package_data={"nfts": ["py.typed"]},
zip_safe=False,
install_requires=[
2021-09-25 16:50:43 +00:00
"moonstreamdb",
"mooncrawl",
2021-09-25 16:39:30 +00:00
"humbug",
"numpy",
2021-10-08 03:32:03 +00:00
"pandas",
"requests",
"scipy",
2021-09-25 16:39:30 +00:00
"tqdm",
"web3",
],
extras_require={
2021-09-29 12:41:50 +00:00
"dev": ["black", "mypy", "types-requests"],
2021-09-25 16:39:30 +00:00
"distribute": ["setuptools", "twine", "wheel"],
},
entry_points={
"console_scripts": [
"nfts=nfts.cli:main",
]
},
2021-09-25 16:39:30 +00:00
)