-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.17 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
[project]
name = "python-cli-template"
version = "0.0.0"
authors = [
{ name="Mark", email="mark@remarkablemark.org" },
]
description = "Python CLI Template"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = []
[project.scripts]
python-cli-template = "python_cli_template.cli:main"
[project.entry-points."pipx.run"]
python-cli-template = "python_cli_template.cli:main"
[project.optional-dependencies]
build = [
"build==1.4.0",
"pyinstaller==6.18.0",
"twine==6.2.0",
]
docs = [
"pdoc==16.0.0",
]
lint = [
"black==25.12.0",
"isort==7.0.0",
"mypy==1.19.1",
"pre-commit==4.5.1",
"ruff==0.14.13",
]
test = [
"coverage==7.13.3",
"pytest==9.0.2",
]
[project.urls]
Homepage = "https://github.com/remarkablemark/python-cli-template"
Issues = "https://github.com/remarkablemark/python-cli-template/issues"
[tool.black]
fast = true
[tool.mypy]
strict = true
ignore_missing_imports = true
exclude = [
'^tests/.*'
]
[tool.coverage.run]
omit = [
"*/tests/*",
"/opt/*",
"/tmp/*",
]