-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (79 loc) · 1.87 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
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
[project]
authors = [
{ name = "Carlos Loucera", email = "[email protected]" },
{ name = "Marina Esteban-Medina", email = "[email protected]" },
{ name = "Maria Pena-Chilet", email = "[email protected]" },
{ name = "Víctor Manuel de la Oliva Roque", email = "[email protected]" },
{ name = "Sara Herráiz-Gil ", email = "[email protected]" },
]
requires-python = ">=3.8,<3.11"
dependencies = [
"scikit-learn>=1.3.0",
"numpy>=1.24.4,<2.0",
"scipy>=1.10.1",
"pandas>=2.0.3",
"seaborn>=0.12.2",
"shap==0.42.0",
"matplotlib>=3.7.2",
"python-dotenv>=1.0.0",
"pyarrow>=12.0.1",
"statsmodels>=0.14.0",
"pystow>=0.5.0",
]
name = "drexml"
version = "1.1.3"
description = "(DRExM³L) Drug REpurposing using and eXplainable Machine Learning and Mechanistic Models of signal transduction\""
readme = "README.md"
[project.license]
text = "MIT"
[project.group.dev.dependencies.coverage]
extras = [
"toml",
]
version = "^7.2.7"
[project.scripts]
drexml = "drexml.cli.cli:main"
[tool.pdm.dev-dependencies]
dev = [
"black<23.0.0,>=22.3.0",
"isort<6.0.0,>=5.10.1",
"pylint<3.0.0,>=2.14.0",
"pytest<8.0.0,>=7.1.2",
"Sphinx<6.0.0,>=5.0.1",
"sphinx-click<5.0.0,>=4.1.0",
"sphinx-rtd-theme<2.0.0,>=1.0.0",
"flake8<5.0.0,>=4.0.1",
"flake8-black<1.0.0,>=0.3.3",
"coverage>=7.2.7",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--ff",
"-ra",
"-v",
"--import-mode=importlib",
]
python_functions = [
"test_*",
]
testpaths = [
"tests",
]
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
[tool.coverage.run]
omit = [
".*",
"*/site-packages/*",
"./tests/*",
]
[tool.coverage.report]
fail_under = 95
[build-system]
requires = [
"pdm-backend",
]
build-backend = "pdm.backend"