-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
129 lines (117 loc) · 2.75 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[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.ruff]
line-length = 120
required-version = ">=0.9.0"
extend-exclude = ["flow/record/version.py"]
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
select = [
"F",
"E",
"W",
"I",
"UP",
"YTT",
"ANN",
"B",
"C4",
"DTZ",
"T10",
"FA",
"ISC",
"G",
"INP",
"PIE",
"PYI",
"PT",
"Q",
"RSE",
"RET",
"SLOT",
"SIM",
"TID",
"TCH",
"PTH",
"PLC",
"TRY",
"FLY",
"PERF",
"FURB",
"RUF",
]
ignore = ["E203", "B904", "UP024", "ANN002", "ANN003", "ANN204", "ANN401", "SIM105", "TRY003"]
[tool.ruff.lint.per-file-ignores]
"tests/docs/**" = ["INP001"]
[tool.ruff.lint.isort]
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"