staking-deposit-cli/setup.py
2020-10-01 15:51:13 +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='0.4.1',
py_modules=["eth2deposit"],
packages=find_packages(exclude=('tests', 'docs')),
python_requires=">=3.7,<4",
)