-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (53 loc) · 1.27 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "cascade-config"
description = "Cascading configuration from the CLI and config files."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Ralf Gabriels", email = "ralf@gabriels.dev"}
]
keywords = [
"configuration",
"command line interface",
"configuration files",
"JSON"
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Utilities"
]
dynamic = ["version"]
requires-python = ">=3.6"
dependencies = [
"jsonschema>=3",
]
[project.urls]
GitHub = "https://github.com/RalfG/cascade-config"
ReadTheDocs = "https://cascade-config.readthedocs.io/en/stable/"
[project.optional-dependencies]
test = ["pytest>=6,<7", "pytest-cov>=2,<3"]
docs = [
"sphinx",
"numpydoc>=1,<2",
"recommonmark",
"sphinx-mdinclude",
"toml",
"semver>=2",
"sphinx_rtd_theme",
"sphinx-autobuild",
]
[tool.flit.module]
name = "cascade_config"
[tool.black]
line-length = 99
target-version = ['py38']
[tool.ruff]
line-length = 99
target-version = 'py38'