mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2024-12-22 03:30:36 +00:00
14 lines
270 B
Python
14 lines
270 B
Python
from setuptools import find_packages, setup
|
|
|
|
"""
|
|
THIS IS A STUB FOR RUNNING THE APP
|
|
"""
|
|
|
|
setup(
|
|
name="staking_deposit",
|
|
version='2.5.0',
|
|
py_modules=["staking_deposit"],
|
|
packages=find_packages(exclude=('tests', 'docs')),
|
|
python_requires=">=3.8,<4",
|
|
)
|