-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
60 lines (52 loc) · 1.41 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
53
54
55
56
57
58
59
60
[build-system]
requires = ["hatchling>=1.24"]
build-backend = "hatchling.build"
[project]
name = "pydatatracker"
version = "0.1.0"
description = "Change-tracking containers for structured Python data"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.12"
authors = [
{name = "PyDataTracker Contributors"},
]
license = {file = "LICENSE"}
keywords = ["tracking", "state", "audit", "containers"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8.3",
"pytest-cov>=5.0",
"ruff>=0.5",
]
[project.urls]
Homepage = "https://github.com/your-org/pydatatracker"
Repository = "https://github.com/your-org/pydatatracker"
Documentation = "https://github.com/your-org/pydatatracker/tree/main/docs"
[tool.hatch.version]
path = "src/pydatatracker/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/pydatatracker"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "--strict-config --strict-markers"
filterwarnings = [
"error",
]
testpaths = [
"tests",
]
[tool.coverage.run]
branch = true
source = ["pydatatracker"]
[tool.coverage.report]
skip_covered = true
show_missing = true