-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.67 KB
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
# Build wheel package with: pip wheel -w dist .
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "loadconfig"
dynamic = ["version"]
description = "Tool to simplify config management in a program"
authors = [{name="Daniel Mizyrycki", email="mzdaniel@glidelink.net"}]
readme = "README.md"
requires-python = ">= 3.11"
dependencies = ["clg>=3.3", "PyYAML>=6.0.2"]
keywords = ["config", "yaml", "clg", "command-line", "argparse"]
license = {file="LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: POSIX",
"Operating System :: Unix"]
[project.urls]
Homepage = "https://loadconfig.readthedocs.org"
Repository = "https://github.com/loadconfig"
[tool.setuptools]
packages = ["loadconfig"]
script-files = ["scripts/loadconfig"]
license-files = []
[tool.setuptools.dynamic]
version = {attr = 'loadconfig.__version__'}
[tool.ruff.lint]
ignore = ["E402", "E741"]
[tool.pytest.ini_options]
addopts = "-sv --ignore=tests/fixtures/demoscript.py --ruff --doctest-modules --doctest-glob='*.py' --doctest-glob='*.md' --cov=loadconfig --cov=tests --cov-report=term-missing"
[tool.coverage.html]
directory = "build/coverage"