-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.5 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "plonex"
description = "Deploy a manage Plone site based on some configuration files"
readme = "README.md"
license = {text = "GPL-3.0"}
keywords = ["plone", "deployment"]
version = "0.1.0"
requires-python = ">=3.8"
authors = [
{ name="Alessandro Pisa", email="pisa@syslab.com" },
]
maintainers = [
{ name="Alessandro Pisa", email="pisa@syslab.com" },
]
dependencies = [
"argcomplete",
"Jinja2",
"PyYAML",
"pip-requirements-parser",
"requests",
"types-requests",
"rich-argparse",
"types-PyYAML",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.scripts]
plonex = "plonex:cli.main"
[project.urls]
Homepage = "https://tbd"
Documentation = "https://tbd"
Repository = "https://tbd"
Issues = "https://tbd"
Changelog = "https://tbd"
[project.optional-dependencies]
test = ["mypy", "pytest", "pytest-cov", "supervisor"]
[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311', 'py312']
[tool.flake8]
max-line-length = 88
[tool.isort]
profile = "plone"