-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
51 lines (46 loc) · 1.17 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "Parsenvy"
version = "3.0.2"
dependencies = []
requires-python = ">=3.9"
authors = [
{name = "Nik Kantar", email = "nik@nkantar.com" },
]
description = "Enviously elegant environment variable parsing"
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
[tool.uv]
dev-dependencies = [
"ruff>=0.6.2",
"pytest>=8.3.2",
"pydocstyle>=6.3.0",
"mypy>=1.11.2",
"pdbpp>=0.10.3",
"coverage>=7.6.1",
"sphinx>=7.4.7",
"sphinx-rtd-theme>=2.0.0",
"sphinx-mdinclude>=0.6.2",
"pytest-cov>=5.0.0",
]
[tool.pytest]
python_paths = "src/parsenvy"
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true