-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (71 loc) · 1.99 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (71 loc) · 1.99 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
[build-system]
requires = [
"setuptools",
"wheel",
"Cython",
"pybind11",
"numpy>=1.21",
"scipy",
]
build-backend = "setuptools.build_meta"
[project]
name = "UQPyL"
version = "2.1.6"
authors = [
{name = "wmtSky", email = "wmtsky@hhu.edu.cn"}
]
license = {text = "MIT"}
description = "A python package for parameter uncertainty quantification and optimization"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy>=1.26; python_version>='3.9'",
"numpy>=1.21,<1.25; python_version<'3.9'",
"scipy",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
viz = ["matplotlib"]
[project.urls]
Homepage = "https://uqpyl.readthedocs.io"
Repository = "https://github.com/smasky/UQPyL"
Documentation = "https://uqpyl.readthedocs.io"
[tool.cibuildwheel]
build = "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
skip = ["pp*", "*-musllinux*"]
before-build = [
"pip install numpy scipy cython pybind11",
]
build-verbosity = 1
[tool.pytest.ini_options]
testpaths = ["tests"]
cache_dir = ".cache/pytest/cache"
python_files = ["test_*.py"]
norecursedirs = [
"examples",
"build",
"Result",
".history",
".ipynb_checkpoints",
".cache",
".pytest_cache",
]
addopts = "-ra --basetemp=.cache/pytest/tmp"
filterwarnings = [
"ignore:The truth value of an empty array is ambiguous.*:DeprecationWarning",
"ignore:Passing None has been deprecated.*:pytest.PytestRemovedIn8Warning",
"ignore:The NumPy module was reloaded.*:UserWarning",
"ignore:numpy\\.ndarray size changed.*:RuntimeWarning",
]