-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
57 lines (53 loc) · 1.52 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
[project]
name = "radcad"
version = "0.14.0"
description = "A Python framework for designing, testing, and validating complex systems through modelling and simulation."
authors = [
{name = "CADLabs", email = "[email protected]"},
]
requires-python = ">=3.8, <3.13"
dependencies = [
"pathos<1.0.0,>=0.2.7",
"pandas<=2.0.3; python_version < '3.9'",
"pandas>2.0.3; python_version >= '3.9'",
"py<2.0.0,>=1.11.0",
"numpy<1.25; python_version < '3.9'",
"numpy<1.26.4,>=1.25; python_version >= '3.9'",
"fn-py<1.0.0,>=0.6.0",
]
[project.optional-dependencies]
compat = [
"cadCAD<0.5.0; python_version < '3.9'",
"cadCAD>=0.5.0; python_version >= '3.9'",
]
extension-backend-ray = [
"ray<3.0.0,>=2.0.0",
"boto3<2.0.0,>=1.16.43",
]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"pytest==8.3.2",
"coveralls<3.0.0,>=2.2.0",
"pytest-cov<3.0.0,>=2.10.1",
"pytest-benchmark==4.0.0",
"matplotlib<3.8.0; python_version < '3.9'",
"matplotlib>=3.8.0; python_version >= '3.9'",
"plotly<5.0.0,>=4.14.1",
"ipykernel<7.0,>=6.14",
"celluloid<1.0.0,>=0.2.0",
"ipywidgets>=7.5",
"memory-profiler<1.0.0,>=0.58.0",
"black<21.0,>=20.8b1",
"tables<=3.7.0; python_version < '3.9'",
"tables>3.8.0; python_version >= '3.9'",
"jupyter<2.0.0,>=1.0.0",
"pdoc3<1.0.0,>=0.9.2",
"jupyterlab<4.0.0,>=3.0.16",
"jupyter-console<7.0.0,>=6.6.3",
]
[tool.pdm.build]
includes = ["radcad"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"