forked from arcesium/poetry-plugin-pypi-mirror
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
44 lines (36 loc) · 1.04 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
[tool.poetry]
name = "poetry-plugin-use-pip-global-index-url"
version = "0.2.5"
description = "Poetry plugin that sets the global index with the value obtained from pip."
authors = [
"Jacob Henner <[email protected]>",
"Hugh Baxter <[email protected]>",
]
license = "BSD-3-Clause"
keywords = ["packaging", "poetry", "pypi", "pip"]
[tool.poetry.dependencies]
python = "^3.7"
poetry = ">=1.3.0,<1.9"
[tool.poetry.plugins."poetry.plugin"]
demo = "poetry_plugin_use_pip_global_index_url.plugins:UsePipGlobalIndexUrlPlugin"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
mypy = "^0.982"
bandit = "^1.7.4"
isort = "^5.10.1"
flake8 = "^3.9.2"
pre-commit = "^2.20.0"
[tool.isort]
profile = "black"
multi_line_output = 3
src_paths = ["src/poetry_plugin_use_pip_global_index_url", "tests"]
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "88"
[[tool.mypy.overrides]]
module = ['cleo.*']
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"