-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
108 lines (98 loc) · 3.17 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
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "changelog-binder"
version = "0.0.1"
description = "A tool to make disk images using GPT partitions self-verifiable"
authors = [
"Nicolas Trangez <[email protected]>",
]
license = "Apache-2.0"
readme = "README.rst"
homepage = "https://github.com/scality/changelog-binder"
repository = "https://github.com/scality/changelog-binder.git"
keywords = ["sphinx", "changelog", "releasenotes"]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :; Python :: 3.10",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: reStructuredText",
"Topic :: Utilities",
"Typing :: Typed",
]
include = [
{ path = "tests/", format = "sdist" },
{ path = "docs/", format = "sdist" },
{ path = "poetry.lock", format = "sdist" },
]
[tool.poetry.urls]
Homepage = "https://github.com/scality/changelog-binder"
Documentation = "https://scality.github.io/changelog-binder"
Changelog = "https://github.com/scality/changelog-binder/releases"
Issues = "https://github.com/scality/changelog-binder/issues"
"Pull Requests" = "https://github.com/scality/changelog-binder/pulls"
[tool.poetry.scripts]
changelog-binder = "changelog_binder.__main__:main"
[tool.poetry.dependencies]
python = "^3.6.1"
[tool.poetry.dev-dependencies]
mypy = "^0.930"
flake8 = "^4.0.1"
flake8-bandit = "^2.1.2"
flake8-bugbear = "^21.11.29"
flake8-docstrings = "^1.6.0"
flake8-rst-docstrings = "^0.2.5"
pep8-naming = "^0.12.1"
darglint = "^1.8.1"
black = "^20.8b1"
flake8-black = "^0.2.4"
safety = "^1.10.3"
Sphinx = "^4.3.2"
furo = "^2021.11.23"
sphinx-argparse = "^0.3.1"
coverage = {version = "^6.2", extras = ["toml"]}
pygments = "^2.10.0"
pytest = "^6.2.5"
typeguard = "^2.13.3"
xdoctest = {version = "^0.15.10", extras = ["colors"]}
flake8-pytest-style = "^1.5.1"
flake8-pytest = "^1.3"
flake8-builtins = "^1.5.3"
flake8-isort = "^4.1.1"
flake8-return = "^1.1.3"
flake8-expression-complexity = "^0.0.9"
pytest-mock = "^3.6.1"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["changelog_binder", "tests"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.mypy]
strict = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true