-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (57 loc) · 1.43 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
[tool.poetry]
name = "gopad"
version = "1.4.2"
description = "Gopad 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.9",
"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/gopad/gopad-python"
keywords = [
"OpenAPI",
"OpenAPI-Generator",
"Etherpad",
"Gopad"
]
include = [
"LICENSE",
"gopad/py.typed"
]
[tool.poetry.dependencies]
python = "^3.9"
urllib3 = ">= 2.2.2"
python-dateutil = ">=2.8.2"
pydantic = ">=2"
typing-extensions = ">=4.7.1"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.1"
types-python-dateutil = ">=2.8.19.14"
build = ">=1.1.1"
[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"