mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2024-12-22 19:50:34 +00:00
14 lines
262 B
Python
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",
|
|
)
|