-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (54 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
70 lines (54 loc) · 1.55 KB
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
[project]
name = "poetry-types"
version = "0.6.0"
authors = [{ name = "Jan Vollmer", email = "jan@vllmr.dev" }]
description = "A poetry plugin that adds/removes type stubs as dependencies like the mypy --install-types command."
license = "MIT License"
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = ["poetry>=2.3.2,<3.0", "packaging>=26.0", "tomlkit>=0.14.0"]
keywords = ["poetry", "types", "type", "plugin"]
classifiers = [
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/jvllmr/poetry-types"
[tool.poetry]
requires-poetry = ">=2.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=9.0.2"
tox = ">=4.47.0"
ruff = ">=0.15.4"
poetry = ">=2.3.2"
[tool.poetry.plugins."poetry.application.plugin"]
poetry-types = "poetry_types.poetry_types:PoetryTypes"
[build-system]
requires = ["poetry-core>=2.1.3"]
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
"""
[tool.ruff]
target-version = "py39"
[tool.ruff.lint]
select = ["T", "UP", "RUF"]
ignore = ["RUF012"]