-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 793 Bytes
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
[project]
name = "prefetch2es"
version = "2.2.2"
description = "A library for fast parse & import of Windows Prefetch into Elasticsearch."
readme = "README.md"
license = "LGPL-3.0-or-later"
authors = [
{ name = "sumeshi", email = "sum3sh1@protonmail.com" }
]
requires-python = ">=3.11"
dependencies = [
"elasticsearch>=9.0.2",
"orjson>=3.10.18",
"tqdm>=4.67.1",
"urllib3>=2.5.0",
"libscca-python==20240215",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"black>=25.1.0",
"flake8>=7.3.0",
"mypy>=1.16.1",
"nuitka==1.7.10",
"pytest>=8.4.1",
]
[project.scripts]
prefetch2es = 'prefetch2es.views.Prefetch2esView:entry_point'
prefetch2json = 'prefetch2es.views.Prefetch2jsonView:entry_point'