-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.59 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
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling" ]
[project]
name = "template-python"
version = "0.4.0"
description = "Add your description here"
readme = "README.md"
authors = [ { name = "S1M0N38", email = "bertolottosimone@gmail.com" } ]
requires-python = ">=3.13"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [ ]
urls.Changelog = "https://github.com/S1M0N38/template-python/blob/main/CHANGELOG.md"
urls.Homepage = "https://github.com/S1M0N38/template-python"
urls.Issues = "https://github.com/S1M0N38/template-python/issues"
urls.Repository = "https://github.com/S1M0N38/template-python"
scripts.template-python = "template_python:main"
[dependency-groups]
dev = [
"commitizen>=4.11",
"google-yamlfmt>=0.21",
"mdformat>=0.7.22,<0.8",
"mdformat-footnote>=0.1.2",
"mdformat-frontmatter>=2.0.8",
"mdformat-gfm>=1",
"mdformat-gfm-alerts>=2",
"mdformat-simple-breaks>=0.0.1",
"prek>=0.3.1",
"pyproject-fmt>=2.11.1",
"ruff>=0.14.13",
"ty>=0.0.12",
]
test = [ "pytest>=9.0.2" ]
[tool.ruff]
lint.extend-select = [ "I" ]
lint.task-tags = [ "FIX", "HACK", "NOTE", "PERF", "TEST", "TODO", "WARN" ]
[tool.pytest.ini_options]
testpaths = [ "tests" ]
markers = [ "dev: marks tests that are currently developed" ]
[tool.commitizen]
name = "cz_conventional_commits"
version_provider = "pep621"
schema_pattern = "^(feat|fix|docs|chore|test|refactor|perf|ci|build|style)(\\((.*?)\\))?!?:\\s.+"
message_max_length = 72