-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 1.05 KB
/
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
[project]
name = "docstring2argparse"
version = "0.1.3"
description = "A simple library to convert docstrings to argparse command line interface"
readme = "README.md"
authors = [
{ name="Lingfei Wang", email="[email protected]" },
{ name="Nikolaos Trasanidis", email="[email protected]" },
{ name="Luca Pinello", email="[email protected]" },
]
maintainers = [
{ name="Lingfei Wang", email="[email protected]" },
]
license = {file = "LICENSE"}
requires-python = ">=3"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
dependencies = [
"docutils"
]
[project.urls]
Homepage = "https://github.com/grnlab/docstring2argparse"
Issues = "https://github.com/grnlab/docstring2argparse/issues"
Repository = "https://github.com/grnlab/docstring2argparse.git"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"