Skip to content

Commit

Permalink
update to main
Browse files Browse the repository at this point in the history
  • Loading branch information
wakamex authored Apr 17, 2024
1 parent 62be42e commit f0a4d81
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"types-setuptools", # Needed due to mypy typeshed
"pandas-stubs==1.2.0.62", # Needed due to mypy typeshed
"types-SQLAlchemy>=1.4.49", # Needed due to mypy typeshed
"types-python-dateutil", # Needed due to mypy typeshed
"flake8>=7.0.0,<8", # Style linter
"flake8-breakpoint>=1.1.0,<2", # Detect breakpoints left in code
"flake8-print>=4.0.1,<5", # Detect print statements left in code
Expand Down Expand Up @@ -75,6 +76,7 @@
with open("./README.md") as readme:
long_description = readme.read()


setup(
name="eth-ape",
use_scm_version=True,
Expand Down Expand Up @@ -106,29 +108,29 @@
"pydantic-settings>=2.0.3,<3",
"PyGithub>=1.59,<2",
"pytest>=6.0,<8.0",
"python-dateutil>=2.8.2",
"python-dateutil>=2.8.2,<3",
"PyYAML>=5.0,<7",
"requests>=2.28.1,<3",
"rich>=12.5.1",
"rich>=12.5.1,<14",
"SQLAlchemy>=1.4.35",
"tqdm>=4.62.3,<5.0",
"traitlets>=5.3.0",
"urllib3>=2.0.0,<3",
"watchdog>=3.0,<4",
# ** Dependencies maintained by Ethereum Foundation **
"eth-abi>=5.1.0,<6",
"eth-account>=0.10.0",
"eth-account>=0.10.0,<0.11",
"eth-tester @ git+https://github.com/wakamex/eth-tester.git",
"eth-typing>=3.5.2,<4",
"eth-utils>=2.3.1",
"eth-utils>=2.3.1,<3",
"py-geth>=4.4.0,<5",
"web3[tester]>=6.16.0",
"web3[tester]>=6.16.0,<6.17.1",
# ** Dependencies maintained by ApeWorX **
"eip712 @ git+https://github.com/wakamex/eip712.git",
"ethpm-types>=0.6.7,<0.7",
"eth_pydantic_types>=0.1.0a5,<0.2",
"evmchains>=0.0.2,<0.1",
"evm-trace @ git+https://github.com/wakamex/evm-trace.git",
"eip712>=0.2.7,<0.3",
"ethpm-types>=0.6.9,<0.7",
"eth_pydantic_types>=0.1.0,<0.2",
"evmchains>=0.0.6,<0.1",
"evm-trace>=0.1.5,<0.2",
],
entry_points={
"console_scripts": ["ape=ape._cli:cli"],
Expand Down

0 comments on commit f0a4d81

Please sign in to comment.