-
Notifications
You must be signed in to change notification settings - Fork 144
/
pyproject.toml
52 lines (46 loc) · 1.54 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "thehive4py"
description = "Python client for TheHive5"
version = "2.0.0b6"
requires-python = ">=3.8"
dependencies = ["requests~=2.27"]
readme = "README.md"
keywords = ["thehive5", "api", "client"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"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",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
]
authors = [{ name = "Szabolcs Antal", email = "[email protected]" }]
[project.optional-dependencies]
audit = ["bandit", "pip-audit"]
build = ["build", "twine"]
docs = ["mkdocs", "mkdocs-material", "mkdocstrings-python", "mike"]
lint = ["black", "flake8-pyproject", "mypy", "pre-commit"]
test = ["pytest", "pytest-cov"]
dev = ["thehive4py[audit, lint, test, build, docs]"]
[tool.setuptools.packages.find]
include = ["thehive4py*"]
[tool.setuptools.package-data]
thehive4py = ["py.typed"]
[tool.coverage.run]
omit = ["tests/*", "thehive4py/types/*"]
[tool.flake8]
max-line-length=88
per-file-ignores = [
"thehive4py/__init__.py:F401",
"thehive4py/endpoints/__init__.py:F401",
"thehive4py/query/__init__.py:F401",
]