-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
32 lines (28 loc) · 956 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "inlog"
version = "2.2.3"
description = "Keep track of your data! Reading config files and creating comprehensive logs for your results."
readme = "README.md"
authors = [{ name = "Paul Ockenfuß", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development :: Quality Assurance",
"Topic :: System :: Logging",
]
keywords = ["config", "ini", "log", "yaml"]
dependencies = [
]
requires-python = ">=3.8"
[project.optional-dependencies]
extra = ["pyyaml"]
[project.urls]
Homepage = "https://github.com/Ockenfuss/inlog"
[project.scripts]
inlog-flowchart = "inlog.flowchart:main"