Skip to content

Commit

Permalink
Merge pull request #90 from yorickdowne/main
Browse files Browse the repository at this point in the history
Add setup.py
  • Loading branch information
yorickdowne authored Aug 23, 2024
2 parents 918d563 + f8d68aa commit 0c09360
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from setuptools import find_packages, setup

"""
THIS IS A STUB FOR IMPORTING THE APP
"""

setup(
name="ethstaker_deposit",
version='0.1.2',
py_modules=["ethstaker_deposit"],
packages=find_packages(exclude=('tests', 'docs')),
python_requires=">=3.9,<4",
)

0 comments on commit 0c09360

Please sign in to comment.