-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (76 loc) · 2.18 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (76 loc) · 2.18 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
name = "jiav"
version = "0.3.2"
description = "Jira Issues Auto Verification"
authors = ["Vadim Khitrin <me@vkhitrin.com>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/vkhitrin/jiav"
repository = "https://github.com/vkhitrin/jiav"
documentation = "https://jiav.readthedocs.io"
packages = [
{ include = "jiav", from = "src" },
{ include = "jiav_lineinfile", from = "src" },
{ include = "jiav_regexinfile", from = "src" },
{ include = "jiav_jira_issue", from = "src" },
]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Topic :: Utilities',
]
[tool.poetry.plugins."jiav.backend"]
regexinfile = "jiav_regexinfile.RegexInFileBackend"
lineinfile = "jiav_lineinfile.LineInFileBackend"
jira_issue = "jiav_jira_issue.JiraIssueBackend"
[tool.poetry.dependencies]
python = "^3.8"
colorlog = "^6.7.0"
jsonschema = "^4.17.3"
pyyaml = "^6.0"
jira = "^3.8.0"
iteration-utilities = "^0.12.1"
rich-click = "^1.8.3"
importlib-metadata = "^8.2.0"
[tool.poetry.scripts]
jiav = "jiav:cli.jiav"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
esbonio = "^0.16.4"
rstfmt = "^0.0.14"
mypy = "^1.10.1"
poetry-types = "^0.5.1"
[tool.poetry.group.types.dependencies]
types-pyyaml = "^6.0.12.20240311"
types-jsonschema = "^4.23.0.20240712"
types-requests = "^2.32.0.20240712"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.8"
files = ["src/**/*.py", "tests/**/*.py"]
mypy_path = "src"
show_column_numbers = true
follow_imports = "normal"
disallow_untyped_calls = true
disallow_untyped_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
strict_optional = true
warn_return_any = true
warn_no_return = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unused_configs = true
no_implicit_reexport = true
strict_equality = true