-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (27 loc) · 955 Bytes
/
pyproject.toml
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
30
31
32
33
34
35
[project]
name = "with-argparse"
description = "A simple but handy Python library to generate a `argparse.ArgumentParser` object from a type-annotated method "
version = "1.0.2"
license = {text = "Apache 2.0"}
readme = "README.md"
dependencies = []
requires-python = ">= 3.8"
authors = [
{ name = "Moritz Hennen", email = "[email protected]" }
]
keywords = [ "argparse", "type annotation", "auto" ]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
repository = "https://github.com/fleonce/with-argparse/"
[tool.setuptools]
packages = ["with_argparse"]