-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (21 loc) · 832 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_namespace_packages # type: ignore[import]
def subpackages():
# make sure subpackages are only in the my/ folder (not in tests or other folders here)
for p in find_namespace_packages(".", include=("my.*",)):
if p.startswith("my."):
yield p
username = "maddie"
if __name__ == "__main__":
setup(
name=f"HPI-maddie", # use a different name from karlicoss/HPI, for confusion regarding egg-link reasons
use_scm_version={
"local_scheme": "dirty-tag",
},
zip_safe=False,
packages=list(subpackages()),
url=f"https://github.com/madelinecameron/HPI",
author="Madeline",
author_email="maddie@qnzl.co",
description="A Python interface to my life",
python_requires=">=3.8",
)