moonworm/setup.py

44 wiersze
1.3 KiB
Python

2021-10-20 08:45:25 +00:00
from setuptools import find_packages, setup
2021-11-04 12:42:07 +00:00
from moonworm.version import MOONWORM_VERSION
2021-10-20 08:45:25 +00:00
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
2021-11-03 11:15:47 +00:00
name="moonworm",
2021-11-04 12:42:07 +00:00
version=MOONWORM_VERSION,
2021-10-20 08:45:25 +00:00
packages=find_packages(),
2021-11-03 11:15:47 +00:00
package_data={"moonworm": ["py.typed"]},
install_requires=[
"black",
2021-12-03 17:44:22 +00:00
"inflection",
"libcst",
"pysha3<2.0.0,>=1.0.0",
"tqdm",
2023-03-08 17:34:20 +00:00
"typing-extensions",
2023-04-06 13:54:58 +00:00
"web3>=6.0.0",
],
2021-10-20 08:45:25 +00:00
extras_require={
2023-03-08 17:34:20 +00:00
"dev": ["isort", "mypy", "wheel", "web3>=5.27.0"],
2023-03-08 17:36:10 +00:00
"moonstream": ["moonstreamdb>=0.3.3"],
2021-10-20 08:45:25 +00:00
"distribute": ["setuptools", "twine", "wheel"],
},
2021-11-03 11:15:47 +00:00
description="moonworm: Generate a command line interface to any Ethereum smart contract",
2021-10-20 08:45:25 +00:00
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",
],
2021-10-28 15:17:56 +00:00
python_requires=">=3.6",
2021-11-03 11:15:47 +00:00
url="https://github.com/bugout-dev/moonworm/",
entry_points={"console_scripts": ["moonworm=moonworm.cli:main"]},
2021-11-03 12:17:32 +00:00
include_package_data=True,
2021-10-20 08:45:25 +00:00
)