-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (81 loc) · 2.36 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (81 loc) · 2.36 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "datary-lab"
version = "0.2.5"
description = "A local-first terminal laboratory for reproducible program data."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [{name = "@dev.mako (devkyato)"}]
keywords = [
"data-provenance",
"data-quality",
"local-first",
"reproducible-research",
"research-software",
"session-recording",
"simulation",
"telemetry",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/devkyato/Datary"
Documentation = "https://github.com/devkyato/Datary#readme"
Issues = "https://github.com/devkyato/Datary/issues"
Changelog = "https://github.com/devkyato/Datary/blob/main/CHANGELOG.md"
[project.optional-dependencies]
plot = ["matplotlib>=3.7"]
dev = [
"build>=1.2",
"matplotlib>=3.7",
"mypy>=1.10",
"pytest>=8",
"pytest-cov>=5",
"ruff>=0.6",
]
[project.scripts]
datary = "datary.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/datary"]
[tool.hatch.build.targets.sdist]
include = ["/src", "/tests", "/docs", "/examples", "/scripts", "/README.md", "/LICENSE", "/CHANGELOG.md", "/CONTRIBUTING.md", "/SECURITY.md", "/pyproject.toml"]
[tool.pytest.ini_options]
addopts = "-q --cov=datary --cov-report=term-missing --cov-fail-under=75"
testpaths = ["tests"]
[tool.ruff]
target-version = "py39"
line-length = 100
src = ["src", "tests", "scripts"]
[tool.ruff.lint]
select = ["E", "F", "I", "B"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.9"
strict = true
files = ["src/datary", "scripts", "tests"]
warn_unreachable = true
follow_imports = "normal"
[[tool.mypy.overrides]]
module = ["pytest", "_pytest", "_pytest.*"]
follow_imports = "skip"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["test_formats", "test_parsers"]
disallow_untyped_decorators = false