-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (45 loc) · 1.58 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "cortexutils"
version = "2.3.0"
description = "A Python library for including utility classes for Cortex analyzers and responders"
readme = "README"
requires-python = ">=3.10"
dependencies = []
license = "AGPL-3.0-or-later"
keywords = ["cortex", "analyzer", "responder", "thehive"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
]
authors = [{ name = "TheHive-Project", email = "support@thehive-project.org" }]
[project.urls]
Homepage = "https://github.com/TheHive-Project/cortexutils"
[project.optional-dependencies]
audit = ["bandit", "pip-audit"]
build = ["build", "twine"]
lint = ["mypy", "ruff", "pre-commit"]
test = ["pytest", "pytest-cov"]
dev = ["cortexutils[audit, lint, test, build]", "nox"]
[tool.setuptools.packages.find]
include = ["cortexutils*"]
[tool.setuptools.package-data]
cortexutils = ["py.typed"]
[tool.coverage.run]
omit = ["tests/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]