-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
81 lines (71 loc) · 1.86 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
[tool.poetry]
name = "poetry-plugin-pyenv"
version = "0.2.1"
description = ""
authors = ["tjquillan <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tjquillan/poetry-plugin-pyenv"
keywords = ["poetry", "plugin", "pyenv"]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Environment :: Plugins",
"Natural Language :: English",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
]
packages = [{ include = "poetry_plugin_pyenv" }]
[tool.poetry.plugins."poetry.application.plugin"]
demo = "poetry_plugin_pyenv.plugin:PyenvPlugin"
[tool.poetry.dependencies]
python = "^3.8"
poetry = "^1.3"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
flake8 = "^5.0.4"
flake8-annotations = "^2.9.1"
flake8-broken-line = "^0.6.0"
flake8-bugbear = "^22.10.27"
flake8-comprehensions = "^3.10.1"
flake8-simplify = "^0.19.3"
flake8-tidy-imports = "^4.8.0"
flake8-type-checking = "^2.2.0"
flake8-typing-imports = "^1.14.0"
flake8-use-fstring = "^1.4"
ipython = "^8.6.0"
isort = "^5.10.1"
mypy = "^0.991"
pep8-naming = "^0.13.2"
pre-commit = "^2.21.0"
pytest = "^7.2.0"
pytest-datadir = "^1.4.1"
pytest-mock = "^3.10.0"
[tool.poetry.group.ci]
optional = true
[tool.poetry.group.ci.dependencies]
pytest-github-actions-annotate-failures = "^0.1.7"
[tool.black]
target-version = ["py38"]
[tool.isort]
py_version = 38
profile = "black"
force_single_line = true
combine_as_imports = true
lines_between_types = 1
lines_after_imports = 2
[tool.mypy]
strict = true
show_error_codes = true
namespace_packages = true
files = ["poetry_plugin_pyenv", "tests"]
[[tool.mypy.overrides]]
module = [
'cleo.*',
]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"