generated from remarkablemark/python_package_template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.04 KB
/
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
50
51
52
53
54
[project]
name = "python_cli_template"
version = "0.0.0"
authors = [
{ name="Mark", email="[email protected]" },
]
description = "Python CLI Template"
readme = "README.md"
requires-python = ">=3.8"
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.2.2.post1",
"pyinstaller==6.13.0",
"twine==6.1.0",
]
docs = [
"pdoc==15.0.2",
]
lint = [
"black==25.1.0",
"isort==6.0.1",
"pre-commit==4.2.0",
"ruff==0.11.6",
]
test = [
"coverage==7.8.0",
"pytest==8.3.5",
]
[project.urls]
Homepage = "https://github.com/remarkablemark/python_cli_template"
Issues = "https://github.com/remarkablemark/python_cli_template/issues"
[tool.black]
fast = true
[tool.coverage.run]
omit = [
"/tmp/*",
]