-
Notifications
You must be signed in to change notification settings - Fork 118
/
pyproject.toml
99 lines (93 loc) · 2.4 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
95
96
97
98
99
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "crowdstrike-falconpy"
dynamic = ["version"]
description = "The CrowdStrike Falcon SDK for Python"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
authors = [
{ name = "CrowdStrike", email = "falconpy@crowdstrike.com" },
]
maintainers = [
{ name = "Joshua Hiller", email = "falconpy@crowdstrike.com" },
]
keywords = [
"api",
"crowdstrike",
"crowdstrike-falcon",
"devsecops",
"falcon",
"oauth2",
"sdk"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Flake8",
"Intended Audience :: Developers",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
dependencies = [
"requests",
"urllib3",
]
[project.optional-dependencies]
dev = [
"bandit",
"coverage",
"flake8",
"pydocstyle",
"pylint",
"pytest",
"pytest-cov"
]
[project.urls]
Documentation = "https://www.falconpy.io"
Homepage = "https://github.com/CrowdStrike/falconpy"
Source = "https://github.com/CrowdStrike/falconpy/tree/main/src/falconpy"
Tracker = "https://github.com/CrowdStrike/falconpy/issues"
[tool.hatch.version]
source = "code"
path = "src/falconpy/_version.py"
expression = "_VERSION"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/build",
"/cut",
"/docs",
"/htmlcov",
"/samples",
"/util",
"/.gitignore",
"/requirements.txt",
"/requirements-dev.txt"
]
[tool.hatch.build.targets.wheel]
package = [
"src/falconpy"
]
include = ["src/falconpy"]
sources = ["src"]