-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
85 lines (76 loc) · 2.18 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
[build-system]
requires = ["setuptools>=65.5.0", "setuptools_scm[toml]>=6.4.0"]
build-backend = "setuptools.build_meta"
[project]
name = "flow.record"
description = "A library for defining and creating structured data (called records) that can be streamed to disk or piped to other tools that use flow.record"
readme = "README.md"
requires-python = "~=3.9"
license.text = "Affero General Public License v3"
authors = [
{name = "Dissect Team", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Utilities",
]
dependencies = [
"msgpack>=0.5.2",
"tzdata; platform_system=='Windows'",
]
dynamic = ["version"]
[project.urls]
homepage = "https://dissect.tools"
documentation = "https://docs.dissect.tools/en/latest/projects/flow.record"
repository = "https://github.com/fox-it/flow.record"
[project.optional-dependencies]
# Note: these compression libraries do not work well with pypy
compression = [
"lz4",
"zstandard",
]
elastic = [
"elasticsearch",
]
geoip = [
"maxminddb",
]
avro = [
"cramjam<2.8.4; platform_python_implementation == 'PyPy' and python_version == '3.9'",
"fastavro[snappy]",
]
duckdb = [
"duckdb",
"pytz", # duckdb requires pytz for timezone support
]
splunk = [
"httpx",
]
test = [
"flow.record[compression]",
"flow.record[avro]",
"flow.record[elastic]",
"duckdb; platform_python_implementation != 'PyPy' and python_version < '3.12'", # duckdb
"pytz; platform_python_implementation != 'PyPy' and python_version < '3.12'", # duckdb
]
[project.scripts]
rdump = "flow.record.tools.rdump:main"
rgeoip = "flow.record.tools.geoip:main"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
known_first_party = ["flow.record"]
[tool.setuptools]
license-files = ["LICENSE", "COPYRIGHT"]
[tool.setuptools.packages.find]
include = ["flow.*"]
[tool.setuptools_scm]
version_file = "flow/record/version.py"