staking-deposit-cli/setup.py
Hsiao-Wei Wang 96200d76ae
Package reorg (#10)
* Move tests to /tests

* Rename `src` to `eth2deposit`

* Fix path

* Fix path and move eth2deposit/utils/credentials.py -> eth2deposit/credentials.py

* Update Makefile

* Kick CI cache

* Fix package setup

* Fix path back

* PR feedback from Carl
2020-05-08 21:34:09 +08:00

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')),
)