-
Notifications
You must be signed in to change notification settings - Fork 314
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (68 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
71 lines (68 loc) · 1.58 KB
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
[project]
name = "yeti"
version = "0.1.0"
description = "Yeti"
authors = [
{name = "Thomas Chopitea", email = "tomchop@gmail.com"},
]
license = {text = "Apache 2.0"}
readme = "README.md"
requires-python = ">=3.10,<3.12"
dependencies = [
"uvicorn>=0.34",
"fastapi>=0.115",
"python-arango>=8.1.2",
"celery>=5.3.4",
"validators>=0.34.0",
"python-jose[cryptography]>=3.4",
"passlib[bcrypt]>=1.7.4",
"python-multipart>=0.0.6,<0.0.19",
"pandas>=2.1.1",
"redis>=5.0.0",
"click>=8.1.7",
"authlib>=1.2.1",
"itsdangerous>=2.1.2",
"pyyaml>=6.0.1",
"parameterized>=0.9.0",
"yara-python>=4.5.0",
"idstools>=0.6.5",
"aenum>=3.1.15",
"tqdm>=4.67.1",
"plyara>=2.2",
"minijinja>=2.9.0",
"beautifulsoup4>=4.13.4",
"artifacts",
"google-auth>=2.39.0",
"websockets>=16.0",
]
[dependency-groups]
dev = [
"pylint>=2.16.1",
"mypy>=1.0.0",
"httpx>=0.23.3",
"ruff>=0.9.0",
"httpx>=0.28.1",
]
plugins = [
"pymisp>=2.4.176",
"otxv2>=1.5.12",
"shodan>=1.30.0",
"timesketch-api-client>=20230721",
"pyopenssl>=23.3.0",
"ipwhois>=1.2.0",
"maclookup>=1.0.3",
"censys>=2.2.10",
"artifacts @ git+https://github.com/forensicartifacts/artifacts.git@main",
"pygithub>=2.3.0",
]
s3 = [
"boto3>=1.35.22",
]
[tool.ruff]
# Enable the isort rules.
lint.extend-select = ["I"]
lint.ignore = ["E402", "F401"]
# exclude files in the /deprecated/ directories
exclude = ["deprecated"]
[tool.uv.sources]
artifacts = { git = "https://github.com/forensicartifacts/artifacts.git", rev = "main" }