-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.35 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 61.0"]
[project]
authors = [
{name = "(Leslie) Yu Chen", email = "leslie.yuchen666@gmail.com"},
{name = "Roberto Rocchetta", email = "roberto.rocchetta88@gmail.com"},
{name = "Marco de Angelis", email = "marco.de-angelis@strath.ac.uk"},
{name = "Scott Ferson", email = "sandp8@gmail.com"},
{name = "Ioanna Ioannou", email = "Ioanna.Ioannou@liverpool.ac.uk"},
]
dependencies = [
"matplotlib",
"numpy==1.26.4",
"pandas",
"seaborn",
"Pint",
"pymongo",
"pymoo",
"rich",
"scipy >=1.15, <1.15.2",
"tqdm",
"bayesian-optimization",
"geneticalgorithm",
"statsmodels >=0.14, <0.15", # Verified 0.14.4 compatibility
"jax==0.4.35",
"SALib",
"json5",
]
description = "Rigorous computation with Uncertain Number in Python"
license = {text = "MIT License"}
maintainers = [
{name = "(Leslie) Yu Chen", email = "leslie.yuchen666@gmail.com"},
]
name = "pyuncertainnumber"
readme = "README.md"
requires-python = ">= 3.11"
version = "0.1.15"
[project.optional-dependencies]
test = [
"pytest",
]
[tool.setuptools.packages.find]
# All the following settings are optional:
where = ["src"] # ["."] by default
[project.urls]
Documentation = "https://pyuncertainnumber.readthedocs.io/en/latest/index.html"
Homepage = "https://github.com/leslieDLcy/PyUncertainNumber"