|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "yeti" |
3 | | -version = "0.1.0" |
| 3 | +version = "2.3.5" |
4 | 4 | description = "Yeti" |
5 | | -authors = [ "Thomas Chopitea <[email protected]>"] |
6 | 5 | license = "Apache 2.0" |
7 | 6 | readme = "README.md" |
| 7 | +requires-python = ">=3.10" |
| 8 | +dependencies = [ |
| 9 | + "aenum>=3.1.15", |
| 10 | + "artifacts", |
| 11 | + "authlib>=1.5.2", |
| 12 | + "beautifulsoup4>=4.13.3", |
| 13 | + "celery>=5.5.1", |
| 14 | + "click>=8.1.8", |
| 15 | + "fastapi>=0.115.12", |
| 16 | + "idstools>=0.6.5", |
| 17 | + "itsdangerous>=2.2.0", |
| 18 | + "minijinja>=2.9.0", |
| 19 | + "passlib[bcrypt]>=1.7.4", |
| 20 | + "plyara>=2.2.8", |
| 21 | + "python-arango>=8.1.6", |
| 22 | + "python-jose[cryptography]>=3.4.0", |
| 23 | + "python-multipart>=0.0.20", |
| 24 | + "pyyaml>=6.0.2", |
| 25 | + "redis>=5.2.1", |
| 26 | + "tqdm>=4.67.1", |
| 27 | + "uvicorn>=0.34.1", |
| 28 | + "validators>=0.34.0", |
| 29 | + "yara-python>=4.5.1", |
| 30 | +] |
8 | 31 |
|
9 | | -[tool.poetry.dependencies] |
10 | | -python = ">=3.10,<3.12" |
11 | | -uvicorn = "^0.34" |
12 | | -fastapi = "^0.115" |
13 | | -python-arango = "^8.1.2" |
14 | | -celery = "^5.3.4" |
15 | | -validators = "^0.34.0" |
16 | | -python-jose = {extras = ["cryptography"], version = "^3.4"} |
17 | | -passlib = {extras = ["bcrypt"], version = "^1.7.4"} |
18 | | -python-multipart = ">=0.0.6,<0.0.19" |
19 | | -pandas = "^2.1.1" |
20 | | -redis = "^5.0.0" |
21 | | -click = "^8.1.7" |
22 | | -jinja2 = "^3.1.2" |
23 | | -authlib = "^1.2.1" |
24 | | -itsdangerous = "^2.1.2" |
25 | | -pyyaml = "^6.0.1" |
26 | | -parameterized = "^0.9.0" |
27 | | -yara-python = "^4.5.0" |
28 | | -idstools = "^0.6.5" |
29 | | -aenum = "^3.1.15" |
30 | | -boto3 = { version = "^1.35.22", optional = true } |
31 | | -tqdm = "^4.67.1" |
32 | | -plyara = "^2.2" |
| 32 | +[dependency-groups] |
| 33 | +dev = [ |
| 34 | + "httpx>=0.28.1", |
| 35 | + "mypy>=1.15.0", |
| 36 | + "parameterized>=0.9.0", |
| 37 | + "pylint>=3.3.6", |
| 38 | + "ruff>=0.11.5", |
| 39 | +] |
| 40 | +plugins = [ |
| 41 | + "censys>=2.2.16", |
| 42 | + "ipwhois>=1.3.0", |
| 43 | + "maclookup>=1.0.3", |
| 44 | + "otxv2>=1.5.12", |
| 45 | + "pandas>=2.2.3", |
| 46 | + "pygithub>=2.6.1", |
| 47 | + "pymisp>=2.5.10", |
| 48 | + "pyopenssl>=25.0.0", |
| 49 | + "shodan>=1.31.0", |
| 50 | + "timesketch-api-client>=20250408", |
| 51 | +] |
33 | 52 |
|
34 | | -[tool.poetry.group.dev.dependencies] |
35 | | -pylint = "^2.16.1" |
36 | | -mypy = "^1.0.0" |
37 | | -httpx = "^0.23.3" |
38 | | -ruff = "^0.9.0" |
| 53 | +[tool.uv] |
| 54 | +default-groups = ["plugins"] |
39 | 55 |
|
40 | | -[tool.poetry.scripts] |
41 | | -yetictl = 'yetictl.cli:cli' |
42 | | - |
43 | | -[tool.poetry.group.plugins.dependencies] |
44 | | -pymisp = "^2.4.176" |
45 | | -otxv2 = "^1.5.12" |
46 | | -shodan = "^1.30.0" |
47 | | -timesketch-api-client = "^20230721" |
48 | | -pyopenssl = "^23.3.0" |
49 | | -ipwhois = "^1.2.0" |
50 | | -maclookup = "^1.0.3" |
51 | | -censys = "^2.2.10" |
52 | | -artifacts = {git = "https://github.com/forensicartifacts/artifacts.git", rev = "main"} |
53 | | -pygithub = "^2.3.0" |
54 | | - |
55 | | -[build-system] |
56 | | -requires = ["poetry-core"] |
57 | | -build-backend = "poetry.core.masonry.api" |
| 56 | +[tool.uv.sources] |
| 57 | +artifacts = { git = "https://github.com/forensicartifacts/artifacts.git" } |
58 | 58 |
|
59 | 59 | [tool.ruff] |
60 | 60 | # Enable the isort rules. |
61 | 61 | lint.extend-select = ["I"] |
62 | 62 | # exclude files in the /deprecated/ directories |
63 | 63 | exclude = ["deprecated"] |
64 | 64 | lint.ignore = ["E402", "F401"] |
65 | | - |
66 | | -[tool.poetry.extras] |
67 | | -s3 = ["boto3"] |
0 commit comments