-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (46 loc) · 1.24 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
[tool.poetry]
name = "caracara-filters"
version = "1.0.0"
description = "FQL generation engine for Caracara"
authors = ["Chris Hammond <chris.hammond@crowdstrike.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "caracara_filters"}]
repository = "https://github.com/CrowdStrike/caracara-filters"
keywords = [
"api",
"crowdstrike",
"falcon-platform",
"fql",
"query-language",
"sdk",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: Filters",
]
[tool.poetry.dependencies]
python = "^3.8.2"
[tool.poetry.group.dev.dependencies]
coverage = "^7.6"
flake8 = "^7.1.0"
pydocstyle = "^6.3.0"
pylint = "^3.2.7"
pytest = "^8.3.3"
isort = "^5.13.2"
black = "^24.8.0"
time-machine = "^2.15.0"
backports-zoneinfo = {version = "0.2.1", python = "~3.8"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"