-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (92 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
101 lines (92 loc) · 2.12 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
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
[build-system]
requires = [
"setuptools >= 40.9.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "mwdb-core"
description = "MWDB Core malware database"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.10"
license-files = ["LICENSE", "LICENSE.AGPL"]
dynamic = ["version"]
authors = [
{name = "CERT Polska", email = "info@cert.pl"},
]
dependencies = [
"alembic==1.14.0",
"apispec[marshmallow,yaml]==6.4.0",
"authlib==1.6.9",
"bcrypt==5.0.0",
"boto3==1.35.81",
"click==8.1.3",
"click-default-group==1.2.2",
"flask==3.1.3",
"flask-migrate==4.1.0",
"flask-sqlalchemy==3.0.5",
"gunicorn==25.1.0",
"karton-core==5.9.1",
"limits==3.9.0",
"luqum==0.13.0",
"marshmallow==3.26.2",
"prometheus-client==0.21.1",
"psycopg2-binary==2.9.10",
"pycryptodomex==3.23.0",
"pyjwt==2.12.1",
"python-dateutil==2.8.2",
"python-json-logger==2.0.2",
"python-magic==0.4.18",
"pyzipper==0.3.5",
"redis==4.5.4",
"requests==2.32.4",
"sqlalchemy==1.4.54",
"typed-config==1.1.0",
"werkzeug==3.1.6",
]
[project.urls]
Homepage = "https://github.com/CERT-Polska/mwdb-core"
Documentation = "https://mwdb.readthedocs.io/"
Repository = "https://github.com/CERT-Polska/mwdb-core.git"
[project.scripts]
mwdb-core = "mwdb.cli:cli"
[tool.setuptools]
packages = ["mwdb", "mwdb.cli", "mwdb.core", "mwdb.model", "mwdb.resources", "mwdb.schema"]
[tool.setuptools.dynamic]
version = {attr = "mwdb.version.app_version"}
[dependency-groups]
test = [
"python-dateutil",
"pyJWT",
"pytest",
"pytest-rerunfailures",
"requests",
"python-baseconv",
"pyzipper",
]
dev = [
"black",
"isort",
]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[tool.lint-python]
lint-version = "2"
source = "mwdb/"
use-mypy = false
[tool.black]
exclude = '''
/(
mwdb/web/.+ |
mwdb/model/migrations/.+
/)
'''