-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
executable file
·68 lines (60 loc) · 1.6 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dlunch"
version = "3.4.0"
authors = [
{ name="Michele Alberti", email="michele.alberti90@gmail.com" },
]
description = "The ultimate web app for a well organized lunch."
readme = "README.md"
requires-python = ">=3.11"
keywords = ["python", "webapp", "lunch"]
license = {text = "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: Free for non-commercial use",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "optional-dependencies"]
[project.urls]
Homepage = "https://github.com/Michele-Alberti/data-lunch"
Issues = "https://github.com/Michele-Alberti/data-lunch/issues"
[project.scripts]
data-lunch = "dlunch.cli:main"
[tool.setuptools]
packages = ["dlunch"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements/requirements.txt"]}
[tool.setuptools.dynamic.optional-dependencies]
dev = {file = ['requirements/dev-requirements.txt']}
docs = {file = ['requirements/docs-requirements.txt']}
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.commitizen]
name = "cz_conventional_commits"
version = "3.4.0"
version_files = [
"dlunch/core.py",
"pyproject.toml:version",
]
tag_format = "v$version"
changelog_file = "changelog.md"
update_changelog_on_bump = true
annotated_tag = true
bump_message = "release $new_version (previous release $current_version)"