staking-deposit-cli/setup.py
2021-04-02 07:33:24 +02:00

14 lines
262 B
Python

from setuptools import find_packages, setup
"""
THIS IS A STUB FOR RUNNING THE APP
"""
setup(
name="eth2deposit",
version='1.2.0',
py_modules=["eth2deposit"],
packages=find_packages(exclude=('tests', 'docs')),
python_requires=">=3.7,<4",
)