-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
86 lines (70 loc) · 1.51 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
[project]
name = "drupy"
description = "Python based deployment tool for Drupal 7"
authors = [
{name = "Roman Zimmermann", email="[email protected]"},
]
readme="README.md"
dynamic = ["version"]
dependencies = [
]
keywords = ["drupal", "drupy", "build"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: System :: Software Distribution",
]
[project.urls]
Homepage = "https://github.com/moreonion/drupy"
[project.optional-dependencies]
dev = [
"black",
"isort",
"pre-commit",
"pydocstyle[toml]>=6",
"pylint",
"pytest",
"pytest-cov",
]
yaml = [
"ruamel.yaml>=0.16",
]
[project.scripts]
drupy = "drupy.runner:main"
[build-system]
requires = [
"setuptools>=45",
"setuptools-scm[toml]>=6.2",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["drupy"]
include-package-data = true
[tool.setuptools_scm]
[tool.black]
line-length = 100
[tool.coverage.run]
source = ["drupy"]
relative_files = true
[tool.coverage.report]
fail_under = 23
[tool.isort]
profile = "black"
line_length = 100
combine_as_imports = true
[tool.pydocstyle]
convention = "google"
[tool.pylint.basic]
good-names = ["db"]
[tool.pylint.format]
max-line-length = "100"
[tool.pytest.ini_options]
addopts = "--cov --cov-report=term --cov-report=xml --junitxml=pytest-junit.xml"
python_classes = [
"*Test",
"Test*",
]