-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (59 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
69 lines (59 loc) · 1.78 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
65
66
67
68
69
[project]
name = "plonecli"
version = "7.0.0b8.dev0"
description = "A Plone CLI for creating Plone packages"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "BSD-3-Clause" }
authors = [{ name = "Maik Derstappen", email = "md@derico.de" }]
keywords = ["plone", "cli", "copier", "scaffolding"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Build Tools",
"Environment :: Console",
"Framework :: Plone",
"Framework :: Plone :: 6.0",
"Framework :: Plone :: 6.1",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"Click>=8.0",
"click-aliases",
"copier>=9.0.0",
"copier-templates-extensions",
"pyyaml",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
docs = ["sphinx", "myst-parser"]
dev = ["tox", "ruff"]
[project.scripts]
plonecli = "plonecli.cli:cli"
[project.urls]
Homepage = "https://github.com/plone/plonecli"
Repository = "https://github.com/plone/plonecli.git"
Issues = "https://github.com/plone/plonecli/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["plonecli"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: end-to-end tests that generate projects and run Plone (slow)",
]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "B", "UP", "SIM"]
[tool.ruff.lint.isort]
known-first-party = ["plonecli"]