-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "credit_risk_modelling"
version = "0.1"
authors = [{name="RandomCollection", email="jugendzeitung@aol.com"}]
description = "Credit Risk Modelling is a Python library providing a curated selection of modules to perform credit risk modelling analytics."
keywords = ["credit", "risk", "modelling"]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"colour>=0.1.5",
"docxtpl>=0.18.0",
"importlib_resources>=6.4.5",
"numpy>=2.1.1",
"matplotlib>=3.9.2",
"pandas>=2.2.3",
"pyarrow>=17.0.0",
"seaborn>=0.13.2",
"scikit-learn>=1.5.2",
"scipy>=1.14"
]
[project.urls]
Homepage = "https://github.com/RandomCollection"
Documentation = "https://randomcollection.github.io/Credit-Risk-Modelling"
Repository = "https://github.com/RandomCollection/Credit-Risk-Modelling"
Issues = "https://github.com/RandomCollection/Credit-Risk-Modelling/issues"
[tool.hatch.build]
exclude = [
"/.*",
"/architecture",
"/docs",
"/tests"
]