-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (56 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
67 lines (56 loc) · 1.41 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
[tool.poetry]
name = "kleister"
version = "2.1.4"
description = "Kleister OpenAPI"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: Software Development",
]
authors = [
"Thomas Boerger <thomas@webhippie.de>"
]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/kleister/kleister-python"
keywords = [
"OpenAPI",
"OpenAPI-Generator",
"Minecraft",
"Technic"
]
include = [
"LICENSE",
"kleister/py.typed"
]
[tool.poetry.dependencies]
python = "^3.10"
urllib3 = ">= 2.2.2"
python-dateutil = ">=2.8.2"
pydantic = ">=2"
typing-extensions = ">=4.7.1"
[tool.poetry.group.dev.dependencies]
pytest = "==9.0.2"
types-python-dateutil = "==2.9.0.20260402"
build = "==1.4.2"
[tool.pytest.ini_options]
addopts = "test/"
filterwarnings = [
"ignore::FutureWarning",
"ignore::DeprecationWarning",
"ignore:.*pep8.*:FutureWarning",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"