moonworm/setup.py

40 wiersze
1.2 KiB
Python

from setuptools import find_packages, setup
from moonworm.version import MOONWORM_VERSION
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name="moonworm",
version=MOONWORM_VERSION,
packages=find_packages(),
package_data={"moonworm": ["py.typed"]},
install_requires=["web3[tester]", "libcst", "pysha3<2.0.0,>=1.0.0"],
extras_require={
"dev": [
"black",
"mypy",
"isort",
"wheel",
],
"distribute": ["setuptools", "twine", "wheel"],
},
description="moonworm: Generate a command line interface to any Ethereum smart contract",
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",
],
python_requires=">=3.6",
url="https://github.com/bugout-dev/moonworm/",
entry_points={"console_scripts": ["moonworm=moonworm.cli:main"]},
include_package_data=True,
)