moonstream/crawlers/mooncrawl/setup.py

61 wiersze
1.9 KiB
Python
Czysty Zwykły widok Historia

from setuptools import find_packages, setup
from mooncrawl.version import MOONCRAWL_VERSION
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name="mooncrawl",
version=MOONCRAWL_VERSION,
author="Bugout.dev",
author_email="engineers@bugout.dev",
license="Apache License 2.0",
description="Moonstream crawlers",
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={"mooncrawl": ["py.typed"]},
zip_safe=False,
install_requires=[
"boto3~=1.20.2",
"bugout~=0.1.17",
2021-11-10 15:05:58 +00:00
"chardet~=4.0.0",
"moonstreamdb==0.2.0",
"humbug~=0.2.7",
"python-dateutil~=2.8.2",
"requests~=2.26.0",
"tqdm~=4.62.3",
"web3~=5.24.0",
],
2021-08-24 14:13:20 +00:00
extras_require={
"dev": ["black", "isort", "mypy", "types-requests", "types-python-dateutil"],
"distribute": ["setuptools", "twine", "wheel"],
2021-08-24 14:13:20 +00:00
},
entry_points={
"console_scripts": [
"crawler=mooncrawl.crawler:main",
"esd=mooncrawl.esd:main",
"identity=mooncrawl.identity:main",
2021-08-18 14:24:09 +00:00
"etherscan=mooncrawl.etherscan:main",
"nft=mooncrawl.nft.cli:main",
2021-11-07 14:04:58 +00:00
"contractcrawler=mooncrawl.contract.cli:main",
]
},
)