-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.12 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
35
36
37
38
[build-system]
requires = ["setuptools>=68.0.0", "setuptools_scm[toml]>=7.1.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "quickconf"
authors = [{name="Kenneth Trelborg Vestergaard", email="[email protected]"}]
description = "Simple and flexible TOML-file based configurations framework"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["configuration", "settings", "options", "toml"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'attrs',
'tomli>=2.0;python_version<"3.11"',
]
dynamic = ["version"]
[project.optional-dependencies]
save = [ 'tomlkit>=0.12.1,<1.0' ]
build = [ 'setuptools', 'build', 'wheel', 'twine' ]
test = [ 'pre-commit', 'pytest', 'pytest-cov' ]
[tool.setuptools.dynamic]
version = {file = [".version"]}
[project.urls]
Homepage = "https://github.com/mortencombat/quickconf"
Repository = "https://github.com/mortencombat/quickconf"