-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (52 loc) · 1.84 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
60
61
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "pyconfs"
author = "Geir Arne Hjelle"
author-email = "[email protected]"
home-page = "https://github.com/gahjelle/pyconfs"
description-file = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = "configuration ini json toml yml"
# Requirements
requires-python = ">=3.6"
requires = [
"importlib_resources; python_version < '3.7'",
"pyplugs",
]
[tool.flit.metadata.requires-extra]
toml = ["toml"]
yaml = ["PyYAML"]
dev = ["black", "bumpversion", "flake8", "flit", "interrogate", "isort", "mypy", "pre-commit"]
doc = ["mkdocs"]
test = ["black", "flake8", "interrogate", "isort", "mypy", "pytest", "pytest-cov", "tox"]
[tool.isort]
multi_line_output = 3
profile = "black"
import_heading_stdlib = "Standard library imports"
import_heading_thirdparty = "Third party imports"
import_heading_firstparty = "PyConfs imports"
[tool.interrogate]
ignore-init-method = false
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-module = false
fail-under = 100
verbose = 0