-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 866 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (26 loc) · 866 Bytes
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
26
27
28
29
from setuptools import find_packages, setup
VALID_PY_VERSIONS = [
f"Programming Language :: Python :: 3.{v}" for v in range(9, 11)
]
setup(
name="typed_cap",
setup_requires=["setuptools_scm"],
use_scm_version={
"write_to": "typed_cap/_version.py",
"write_to_template": 'version = "{version}"\n',
},
author="MamoruDS",
author_email="mamoruds.io@gmail.com",
description="typed command line argument parser",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/MamoruDS/typed-cap",
packages=find_packages(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
*VALID_PY_VERSIONS,
],
python_requires=">=3.9",
)