-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (58 loc) · 1.2 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
[build-system]
requires = ["hatchling<=1.18.0"]
build-backend = "hatchling.build"
[project]
name = "fame3r"
version = "0.0.2"
description = "FAME3R: a re-implementation of the FAME3 model"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Roxane Jacob", email = "[email protected]"},
]
dependencies = [
"CDPKit==1.1.1",
"joblib==1.4.2",
"numpy>=1.26.4, <2.0.0",
"pandas>=2.2.2",
"scikit-learn>=1.5.1",
]
[project.optional-dependencies]
dev = [
"build",
"black",
"flake8",
"isort",
"mypy",
"pydocstyle",
"pylint",
"pytest",
]
[project.scripts]
fame3r-cv-hp-search = "scripts.cv_hp_search:main"
fame3r-infer = "scripts.infer:main"
fame3r-test = "scripts.test:main"
fame3r-train = "scripts.train:main"
[tool.hatch.build.targets.sdist]
include = [
"fame3r",
"scripts",
]
[tool.hatch.build.targets.wheel]
include = [
"fame3r",
"scripts",
]
[tool.pylint.messages_control]
disable = [
"no-member", # needed because CDPKit does not include module stub files
"too-few-public-methods",
"duplicate-code",
"too-many-locals",
"too-many-statements",
]
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true