-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.92 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (54 loc) · 1.92 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "scitrack"
dynamic = ["version"]
description = "Basic logging capabilities to track scientific computations."
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [{ name = "Gavin Huttley", email = "Gavin.Huttley@anu.edu.au" }]
requires-python = ">=3.10"
keywords = ["science", "logging"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"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",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/HuttleyLab/scitrack"
Documentation = "https://github.com/HuttleyLab/scitrack"
"Bug Tracker" = "https://github.com/HuttleyLab/scitrack/issues"
"Source Code" = "https://github.com/HuttleyLab/scitrack"
[dependency-groups]
dev = ["numpy", "pytest", "pytest-cov", "ruff==0.15.22", "nox", "mypy>=2.1.0"]
[tool.hatch.version]
path = "src/scitrack/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/scitrack"]
[tool.hatch.build.targets.sdist]
include = ["src/scitrack", "pyproject.toml", "README.md", "LICENSE"]
exclude = ["**/*.xml", "**/__pycache__"]
[tool.mypy]
files = ["src/scitrack"]
python_version = "3.10"
strict = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unreachable = true
[tool.coverage.run]
source_pkgs = ["scitrack"]
[tool.coverage.report]
# restrict the report to scitrack; lazily imported stdlib modules
# (zipfile, importlib.metadata) otherwise leak into the output
include = ["*/scitrack/*"]
# Ruff configuration lives in ./ruff.toml