-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (40 loc) · 912 Bytes
/
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
[project]
name = "timcol"
dynamic = ["version"]
description = "Time tracking on the command line."
authors = [
{ name = "itsjohncs", email = "[email protected]" }
]
dependencies = [
"dateparser>=1.2.0",
"tabulate>=0.9.0",
"pystache>=0.6.5",
]
readme = "README.md"
requires-python = ">= 3.8"
[project.scripts]
"timcol" = "timcol.tool.main:main"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.2",
"pyfakefs>=5.6.0",
"time-machine>=2.14.2",
"tzdata>=2024.1",
"tox>=4.16.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/timcol"]
[tool.pyright]
venvPath = "."
venv = ".venv"
stubPath = "./typestubs"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"