-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
122 lines (106 loc) · 2.83 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.commitizen]
bump_message = "bump: $current_version → $new_version"
changelog_incremental = true
name = "cz_conventional_commits"
tag_format = "v$version"
update_changelog_on_bump = true
version = "0.2.3"
version_files = [
"VERSION",
"pyproject.toml:^version = ",
"poetry_plugin_mono_repo_deps/_version.py:^__version"
]
[tool.coverage.report]
fail_under = 100
show_missing = true
[tool.coverage.run]
branch = true
omit = ["tests/**"]
relative_files = true
[tool.coverage.tml]
directory = "coverage/cov_html"
[tool.coverage.xml]
output = "coverage/coverage.xml"
[tool.docformatter]
black = true
pre-summary-newline = true
recursive = true
wrap-descriptions = 120
wrap-summaries = 120
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_untyped_defs = true
exclude = ["^tests/fixtures/simple_a"]
explicit_package_bases = true
implicit_reexport = false
python_version = "3.8"
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = ["cleo.*", "poetry.*", "pytest.*", "pytest_mock.*", "keyring.*", "tomlkit.*"]
[tool.poetry]
authors = ["Gerben Oostra <ynnx1wmd@duck.com>"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
]
description = "Poetry plugin to replace path dependencies in mono repos with named dependency specifications at build time"
homepage = "https://github.com/gerbenoostra/poetry-plugin-mono-repo-deps"
include = [
{path = "tests", format = "sdist"}
]
keywords = ["packaging", "poetry"]
license = "MIT"
name = "poetry-plugin-mono-repo-deps"
packages = [
{include = "poetry_plugin_mono_repo_deps"}
]
readme = "README.md"
repository = "https://github.com/gerbenoostra/poetry-plugin-mono-repo-deps"
version = "0.2.3"
[tool.poetry.dependencies]
cffi = {version = "^1.17.0", markers = "python_version >= \"3.13\""}
poetry = "^1.7.0"
poetry-core = "^1.7.0"
python = "^3.8"
[tool.poetry.group.dev.dependencies]
mypy = "^1.9.0"
poetry-plugin-export = "^1.6.0"
pytest = "^8.0.2"
pytest-cov = "^4.1.0"
pytest-mock = "^3.14.0"
pytest-runner = "^6.0.1"
ruff = "^0.3.1"
[tool.poetry.group.github-actions]
optional = true
[tool.poetry.group.github-actions.dependencies]
pytest-github-actions-annotate-failures = "^0.1.7"
[tool.poetry.plugins."poetry.application.plugin"]
mono-repo-deps = "poetry_plugin_mono_repo_deps.plugin:MonoRepoDepsPlugin"
[tool.ruff]
extend-exclude = [
# External to the project's coding standards
"tests/**/fixtures/simple_a/*"
]
fix = true
line-length = 120
target-version = "py38"
unsafe-fixes = true
[tool.ruff.lint]
preview = true
select = [
"E",
"F",
"FA",
"UP",
"I"
]