mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2025-01-09 20:41:21 +00:00
11 lines
177 B
Python
11 lines
177 B
Python
|
from setuptools import find_packages, setup
|
||
|
|
||
|
"""
|
||
|
THIS IS A STUB FOR RUNNING THE APP
|
||
|
"""
|
||
|
|
||
|
setup(
|
||
|
name="eth2deposit",
|
||
|
packages=find_packages(exclude=('tests', 'docs')),
|
||
|
)
|