moonworm/setup.py

48 wiersze
1.3 KiB
Python
Czysty Zwykły widok Historia

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",
"moonstreamdb",
"pysha3<2.0.0,>=1.0.0",
"tqdm",
"typing-extensions<4,>=3.7.4",
"web3[tester]",
],
2021-10-20 08:45:25 +00:00
extras_require={
"dev": [
"isort",
"mypy",
2021-10-20 08:45:25 +00:00
"wheel",
],
"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
)