-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·93 lines (72 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
executable file
·93 lines (72 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
[tool.logging]
version = 1
incremental = true
[tool.logging.formatters.formatter]
format = "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
default_time_format = "%H:%M:%S"
[tool.logging.root]
# The root logger level holds for every module that doesn't have its own level.
level = "WARN"
[tool.myproject]
working_directory = "."
[tool.logging.loggers."__main__"]
# The special module __main__ is the script currently being executed.
level = "DEBUG"
[tool.logging.loggers."jax"]
level = "INFO"
[tool.logging.loggers."matplotlib"]
level = "INFO"
[tool.ruff]
# Set the maximum line length to 79.
line-length = 127
[tool.ruff.format]
docstring-code-format = true # code snippets in docstrings will be formatted
[tool.ruff.lint]
# Add the `line-too-long` rule to the enforced rule set.
extend-select = ["E501","F405","E402"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
testpaths = ["tests"]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.my_project]
project_root = "."
[project]
name = "AutomatedRecommendationBenchmarkDSM"
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.9"
description = "Comparing recommendation across scenarios using simulated-DBTL cycles."
[tool.poetry.dependencies]
jaxkineticmodel = { git="https://github.com/AbeelLab/jaxkineticmodel",rev="main"}
dependencies = [
"diffrax>=0.6.0",
"equinox>=0.11.8",
"functions==0.7.0",
"jax==0.4.35",
"jaxlib==0.4.35",
"matplotlib>=3.9.2",
"jaxkineticmodel==0.0.1",
"pandas>=1.1.4",
"pytest>=8.3.4",
"scikit_learn==1.5.2",
"scipy>=1.11.1",
"sympy>=1.13.3",
"tomli>=2.1.0 ; python_version<'3.11'",
"python-libsbml==5.20.4",
"markdown-include>=0.8.1",
"xgboost>=2.1.3"
]
authors = [
{name="Paul van Lent", email="p.h.vanlent@tudelft.nl"},
{name="Sara Moreno Paz", email="sara.moreno-paz@dsm-firmenich.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]