-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (58 loc) · 1.81 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "d8s_timer"
version = "0.6.0"
description = "Democritus functions for working with timers."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "GNU Lesser General Public License v3" }
authors = [{ name = "Floyd Hightower" }]
keywords = ["democritus", "utility", "python", "timers", "timers-utility", "time", "clock"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"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 = [
"d8s-dates>=0.7.0,<1.0",
"d8s-uuids>=0.6.0,<1.0",
]
[project.urls]
Source = "https://github.com/democritus-project/d8s-timer"
Issues = "https://github.com/democritus-project/d8s-timer/issues"
[dependency-groups]
dev = [
"codecov>=2.1.13,<3.0",
"d8s-file-system>=0.10.0,<1.0",
"d8s-python>=0.9.0,<1.0",
"d8s-strings>=0.5.0,<1.0",
"ipython>=8.18.0,<10.0",
"mypy>=2.0,<3.0",
"pytest>=9.0,<10.0",
"pytest-cov>=7.0,<8.0",
"ruff>=0.15.0,<0.17.0",
]
[tool.hatch.build.targets.wheel]
packages = ["d8s_timer"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.lint.per-file-ignores]
"d8s_timer/__init__.py" = ["F401", "F403"]
"tests/*" = ["E501"]
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "-v --cov=. --cov-report term-missing --cov-fail-under 90"
python_files = "tests/test_*.py"