-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
78 lines (68 loc) · 1.62 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "abc-cli"
version = "2026.04.12"
description = "AI bash/zsh/tcsh Command"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Claude 3.5 Sonnet", email = "" },
{ name = "Eric Hammond", email = "" }
]
dependencies = [
"readchar>=4.1.0",
"distro>=1.8.0",
"prompt_toolkit>=3.0.47"
]
[project.urls]
Homepage = "https://github.com/alestic/abc"
Repository = "https://github.com/alestic/abc.git"
[project.scripts]
abc_generate = "abc_cli.abc_generate:main"
abc_setup = "abc_cli.abc_setup:main"
[tool.hatch.build.targets.wheel]
packages = ["abc_cli"]
[tool.hatch.build.targets.wheel.force-include]
"abc_cli/abc.sh" = "abc_cli/abc.sh"
"abc_cli/abc.tcsh" = "abc_cli/abc.tcsh"
"abc_cli/abc.conf.template" = "abc_cli/abc.conf.template"
[tool.hatch.metadata]
allow-direct-references = true
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
]
[tool.pytest.ini_options]
testpaths = ["abc_cli/tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--strict-markers",
"--tb=short",
]
markers = [
"unit: Unit tests",
"integration: Integration tests",
"slow: Slow tests",
]
[tool.coverage.run]
source = ["abc_cli"]
omit = [
"*/tests/*",
"*/__pycache__/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
]