-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (36 loc) · 978 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
40
41
42
43
44
45
[project]
name = "argtoml"
version = "0.5.8"
description = "Add the keys from a .toml file to your CLI as arguments. Their values default to the values in the .toml file."
dependencies = ["tomli_w"]
dynamic = ["readme"]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[git]
github = "https://github.com/JJJHolscher/argtoml"
[project.urls]
homepage = "https://github.com/JJJHolscher/argtoml"
[[project.authors]]
name = "Jochem Hölscher"
email = "[email protected]"
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["argtoml"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.jupytext]
formats = "ipynb,py"
[tool.pyright]
exclude = ".venv"
venvPath = "."
venv = ".venv"
reportMissingImports = false