-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
97 lines (84 loc) · 2.58 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["setuptools < 74"]
build-backend = "setuptools.build_meta"
[project]
name = "plone.meta"
version = "2.0.1.dev0"
description = "Applies a standard set of configuration files for Plone repositories"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">= 3.9"
authors = [
{ name = "Plone Foundation", email = "[email protected]" },
{ name = "Gil Forcada Codinachs", email = "[email protected]" },
]
keywords = ["plone", "packaging"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Natural Language :: English",
"Operating System :: OS Independent",
]
dependencies = [
"setuptools",
"Jinja2",
"editorconfig",
"pyyaml",
"tomlkit",
"tox",
"validate-pyproject[all]",
]
[project.urls]
Homepage = "https://github.com/plone/meta"
"Issue Tracker" = "https://github.com/plone/meta/issues"
Changelog = "https://github.com/plone/meta/blob/main/CHANGES.md"
Documentation = "https://6.docs.plone.org/developer-guide/standardize-python-project-configuration.html"
[project.scripts]
config-package = "plone.meta.config_package:main"
multi-call = "plone.meta.multi_call:main"
re-enable-actions = "plone.meta.re_enable_actions:main"
[tool.towncrier]
directory = "news/"
filename = "CHANGES.md"
start_string = "<!-- towncrier release notes start -->\n"
title_format = "## {version} ({project_date})"
template = "news/.changelog_template.jinja"
underlines = ["", "", ""]
issue_format = "[#{issue}](https://github.com/plone/meta/issues/{issue})"
[[tool.towncrier.type]]
directory = "breaking"
name = "Breaking changes"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "New features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bug fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "internal"
name = "Internal"
showcontent = true
[[tool.towncrier.type]]
directory = "documentation"
name = "Documentation"
showcontent = true
[tool.isort]
profile = "plone"
[tool.black]
target-version = ["py313"]
[tool.codespell]
ignore-words-list = "discreet,thet,"
[tool.check-manifest]
ignore = [".editorconfig", ".flake8", ".pre-commit-config.yaml", "tox.ini"]