-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.28 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "simcalibration"
version = "0.1.16"
description = "Simulation Calibration framework"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
dependencies = [
"graphviz>=0.20.3",
"numpy>=1.20.2",
"pandas>=1.5.3,<2.0.0",
"igraph==0.11.6",
"scikit-learn==1.3.2",
"scipy>=1.6.2",
"tabulate>=0.8.9",
"bnlearn~=0.8.2",
"dagsim~=1.0.6",
"statsmodels~=0.13.2",
"matplotlib~=3.5.1",
"seaborn>=0.11.2",
"rpy2==3.4.5; platform_system != 'Windows'",
]
[project.optional-dependencies]
dev = [
"ipython>=7.27.0",
"pytest>=7",
"pytest-cov",
"ruff",
"black",
"build",
"twine",
]
[project.urls]
Homepage = "https://github.com/uio-bmi/SimCal"
Issues = "https://github.com/uio-bmi/SimCal/issues"
[project.scripts]
simcalibration = "simcalibration.main:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]