-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 2 KB
/
pyproject.toml
File metadata and controls
72 lines (63 loc) · 2 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
68
69
70
71
72
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "phantom-toolbox"
dynamic = ["version"]
dependencies = [
"requests",
"wheel-inspect",
]
description = "Splunk SOAR Application development libraries and utilities"
authors = [
{name = "David D. Riddle", email = "securitysupport@illinois.edu"}
]
readme = "docs/readme.rst"
license = { text = "NCSA" }
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"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 :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Security",
"Topic :: Utilities",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/techservicesillinois/phantom-toolbox/"
"Bug Reports" = "https://github.com/techservicesillinois/phantom-toolbox/issues"
Source = "https://github.com/techservicesillinois/phantom-toolbox/"
Changelog = "https://github.com/techservicesillinois/phantom-toolbox/blob/main/CHANGELOG.md"
[project.optional-dependencies]
test = [
"pytest",
"coverage",
"setuptools_scm", # Hack to install pytest-splunk-soar-connectors
"pytest-splunk-soar-connectors @ git+https://github.com/splunk/pytest-splunk-soar-connectors.git",
]
[project.scripts]
phantom = "phtoolbox.cli:main"
[options]
include-package-data = true
[options.package_data]
phtoolbox = "py.typed"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_file = "src/phtoolbox/_version.py"
local_scheme = "dirty-tag"
[tool.pytest.ini_options]
minversion = "7.2"
pythonpath = "src"
testpaths = [
"tests",
]