-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (43 loc) · 1.08 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
[tool.poetry]
name = "poetry-types"
version = "0.5.1"
description = "A poetry plugin that adds/removes type stubs as dependencies like the mypy --install-types command."
authors = ["Jan Vollmer <[email protected]>"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/jvllmr/poetry-types"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
]
[tool.poetry.dependencies]
python = "^3.9"
poetry = ">=1.8.4"
packaging = ">=24.2"
tomlkit = ">=0.13.2"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.3"
tox = ">=4.23.2"
ruff = ">=0.7.3"
poetry = ">=1.8.4"
[tool.pyaphid]
forbidden = ["print"]
[tool.poetry.plugins."poetry.application.plugin"]
poetry-types = "poetry_types.poetry_types:PoetryTypes"
[build-system]
requires = ["poetry-core>=1.9.1"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist= py39, py310, py311, py312, py313
[testenv]
deps =
pytest
commands =
pytest
"""