mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-09 10:22:00 +00: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
|
|
)
|