-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
92 lines (78 loc) · 2.39 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
# Copyright 2024 Canonical Ltd.
# See LICENSE file for licensing details.
[tool.poetry]
name = "repo-policy-compliance"
version = "1.10.3"
description = "Checks GitHub repository settings for compliance with policy"
authors = ["Canonical IS DevOps <launchpad.net/~canonical-is-devops>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{ include = "repo_policy_compliance" }]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.10.0"
pygithub = "^2.0.0"
flask = "^3.0.0"
flask-httpauth = "^4.8"
jsonschema = "^4.17"
pyyaml = "^6.0"
flask-pydantic = "^0.12.0"
alembic = "^1.13.2"
psycopg2-binary = "^2.9.9"
SQLAlchemy = "^2.0.29"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-operator = "^0.38.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 99
target-version = ["py310"]
[tool.isort]
line_length = 99
profile = "black"
[tool.coverage.run]
branch = true
[tool.coverage.report]
fail_under = 100
show_missing = true
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
[tool.pylint.messages_control]
enable = ["useless-suppression"]
disable = ["wrong-import-position"]
extension-pkg-whitelist = "pydantic"
[tool.bandit]
exclude_dirs = ["/venv/"]
[tool.bandit.assert_used]
skips = ["*/*test.py", "*/test_*.py", "*/*_patch.py"]
# Linting tools configuration
[tool.flake8]
max-line-length = 99
max-doc-length = 99
max-complexity = 10
exclude = [".git", "__pycache__", ".tox", "build", "dist", "*.egg_info", "venv"]
select = ["E", "W", "F", "C", "N", "R", "D", "H"]
# Ignore W503, E501 because using black creates errors with this
# Ignore D107 Missing docstring in __init__
ignore = ["W503", "E501", "D107"]
# D100, D101, D102, D103: Ignore missing docstrings in tests
per-file-ignores = ["tests/*:D100,D101,D102,D103,D104,D205,D212,D415"]
docstring-convention = "google"
# Check for properly formatted copyright header in each file
copyright-check = "True"
copyright-author = "Canonical Ltd."
copyright-regexp = "Copyright\\s\\d{4}([-,]\\d{4})*\\s+%(author)s"