mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-02 16:05:00 -05:00
10 lines
217 B
Python
10 lines
217 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='deposit_contract_tester',
|
|
packages=['deposit_contract'],
|
|
package_dir={"": "."},
|
|
tests_requires=[],
|
|
install_requires=[] # see requirements.txt file
|
|
)
|