-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.31 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
[project]
name = "brms"
version = "0.1.0.dev1"
description = "A bank risk management simulation framework."
readme = "README.md"
authors = [{ name = "Mingze Gao", email = "adrian.gao@outlook.com" }]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib>=3.10.0",
"pandas>=2.2.3",
"pyside6==6.8.1",
"qtawesome>=1.3.1",
"quantlib>=1.36",
"rich>=13.9.4",
"tabulate>=0.9.0",
]
[project.scripts]
brms = "brms.main:main"
[project.urls]
Homepage = "https://bankrisk.org"
[dependency-groups]
dev = [
"isort>=5.13.2",
"mike>=2.1.3",
"mkdocs-gen-files>=0.5.0",
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
"mkdocs-literate-nav>=0.6.1",
"mkdocs-material>=9.6.1",
"mkdocstrings-python>=1.13.0",
"pytest>=8.3.4",
"ruff>=0.8.5",
]
[tool.hatch.build]
include = ["src/brms/data/default/*.csv"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
[tool.pytest.ini_options]
filterwarnings = [
# QuantLib
'ignore:builtin type SwigPyPacked has no __module__ attribute',
'ignore:builtin type SwigPyObject has no __module__ attribute',
'ignore:builtin type swigvarlink has no __module__ attribute',
]
[tool.pylint]
extension-pkg-whitelist = ["PySide6"]