-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 1014 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
36
37
38
39
[project]
name = "func2argparse"
description = "Convert python functions to argparse objects"
authors = [{ name = "Acellera", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
dependencies = []
[project.urls]
"Homepage" = "https://github.com/Acellera/func2argparse"
"Bug Tracker" = "https://github.com/Acellera/func2argparse/issues"
[tool.setuptools.packages.find]
where = [""]
include = ["func2argparse*"]
namespaces = false
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "func2argparse/_version.py"
versionfile_build = "func2argparse/_version.py"
tag_prefix = ""
parentdir_prefix = "func2argparse-"
[tool.pytest.ini_options]
python_files = "*.py"
python_classes = "_Test"
python_functions = "_test*"
testpaths = ["tests"]
[build-system]
requires = ["setuptools", "toml", "versioneer[toml]==0.28"]
build-backend = "setuptools.build_meta"