-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (54 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
65 lines (54 loc) · 1.3 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
[project]
name = "target-orders"
dynamic = ["version"]
description = "Add your description here"
readme = "README.md"
authors = [{ name = "Karl Wooster", email = "karl@woostertech.com" }]
requires-python = ">=3.11,<3.14"
dependencies = [
"attrmagic",
"beautifulsoup4>=4.13.4",
"playwright>=1.51.0",
"pydantic>=2.11.3",
"rich>=14.0.0",
]
license = "MIT"
[project.scripts]
target-orders = "target_orders.cli:app"
[project.optional-dependencies]
cli = ["typer>=0.15.3"]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/target_orders/_version.py"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "scm"
update_changelog_on_bump = true
major_version_zero = true
[dependency-groups]
dev = [
"commitizen>=4.6.0",
"deptry>=0.23.0",
"pre-commit>=4.2.0",
"pyright>=1.1.399",
"ruff>=0.11.6",
]
test = [
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
"pytest-sugar>=1.0.0",
"tox>=4.25.0",
]
[tool.pyright]
typeCheckingMode = "strict"
[tool.uv.sources]
attrmagic = { git = "https://github.com/WoosterTech/AttrMagic.git" }
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]