-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
94 lines (82 loc) · 2.04 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
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "chatnoir-api"
authors = [
{name = "Jan Heinrich Merker", email = "[email protected]"},
{name = "Maik Fröbe", email = "[email protected]"},
]
description = "Simple, type-safe access to the ChatNoir search API."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"requests~=2.32",
"dataclasses-json>=0.5,<0.7",
"typing-extensions~=4.12",
"importlib-metadata~=8.5",
"websocket-client~=1.8",
]
dynamic = ["version"]
[project.optional-dependencies]
tests =[
"bandit[toml]~=1.7",
"mypy~=1.13",
"pytest~=8.3",
"pytest-cov>=5,<7",
"ruff>=0.7.1,<0.9.0",
"types-requests~=2.32",
]
[project.urls]
"Homepage" = "https://github.com/chatnoir-eu/chatnoir-api"
"Bug Tracker" = "https://github.com/chatnoir-eu/chatnoir-api/issues"
[build-system]
requires = ["setuptools>=50", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = [
"build",
"venv",
".venv",
".github",
"dist",
]
[tool.setuptools.package-data]
"*" = ["*.txt", "*.md", "*.rst"]
[tool.mypy]
exclude = [
"build",
"venv",
".venv",
".github",
"dist",
]
ignore_missing_imports = true
[tool.bandit]
exclude_dirs = [
"build",
"venv",
".venv",
".github",
"dist",
]
[tool.bandit.assert_used]
skips = ["**/test_*.py", "**/conftest.py"]
[tool.pytest.ini_options]
log_cli = "True"
filterwarnings = [
'ignore::DeprecationWarning',
]
[tool.setuptools_scm]