staking-deposit-cli/setup.py
2021-08-23 12:33:04 +02:00

14 lines
270 B
Python

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