-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
75 lines (68 loc) · 1.46 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "easyvvuq"
description = "Library to facilitate simple Verification, Validation and Uncertainty Quantification of simulation codes"
readme = "README.md"
authors = [{name = "CCS"}]
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"numpy<2",
"pandas",
"scipy",
"wheel",
"chaospy==4.3.2",
"numpoly==1.1.3",
"SALib",
"SQLAlchemy",
"cerberus",
"dask[complete]",
"dask_jobqueue",
"cloudpickle",
"scikit-learn",
"jinja2",
"kubernetes",
"squarify",
"dill",
"tqdm",
"qcg-pilotjob~=0.13.0",
"qcg-pilotjob-executor-api~=0.13.0",
"h5py",
"tomli",
"fipy",
"setuptools_scm",
]
[project.optional-dependencies]
docs = [
"sphinx >= 5.3",
]
tests = [
"pytest >= 3.3.0",
"pytest-pep8",
"pytest-benchmark",
"pytest-dependency",
]
lint = [
"black",
"ruff",
]
[project.urls]
Source = "https://github.com/UCL-CCS/EasyVVUQ"
Tracker = "https://github.com/UCL-CCS/EasyVVUQ/issues"
Documentation = "https://easyvvuq.readthedocs.io/en/dev/"
[tool.setuptools.packages.find]
where = ["easyvvuq"]
[tool.setuptools_scm]
write_to = "easyvvuq/_version.py"
[tool.black]
exclude = "easyvvuq/_version.py"
[tool.pytest.ini_options]
pep8ignore = [
"*.py E265",
"__init__.py E402",
"tests/*.py E128",
]
pep8maxlinelength = 100