-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (63 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
68 lines (63 loc) · 1.88 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
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["simopt*"]
# Ignore the build directory so we don't circularly include built distributions.
exclude = ["build*"]
[tool.setuptools.package-data]
"simopt.data_farming" = ["*.npz"]
[project]
name = "simoptlib"
version = "1.2.1"
authors = [
{ name = "David Eckman", email = "eckman@tamu.edu" },
{ name = "Shane Henderson", email = "sgh9@cornell.edu" },
{ name = "Sara Shashaani", email = "sshasha2@ncsu.edu" },
{ name = "William Grochocinski", email = "williamgrochocinski@gmail.com" },
]
description = "A testbed for simulation-optimization experiments."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11,<3.14"
classifiers = [
# Application Info
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
# Python Versions
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
# Other Classifiers
"Operating System :: OS Independent",
]
dependencies = [
"boltons>=25.0.0",
"cvxpy>=1.7.3",
"joblib>=1.5.2",
"matplotlib>=3.10.7",
"mrg32k3a[rust]>=2.0.0",
"numpy>=2.3.4",
"pandas>=2.3.3",
"pillow>=12.0.0",
"pydantic>=2.12.3",
"scipy>=1.16.3",
"seaborn>=0.13.2",
]
[project.optional-dependencies]
dev = [
"jupytext>=1.18.1",
"pytest-xdist>=3.8.0",
"pytest>=9.0.1",
"ruff>=0.14.2",
"ty>=0.0.1a26",
]
docs = ["sphinx>=8.2.3", "sphinx-autoapi>=3.6.1", "sphinx-rtd-theme>=3.0.2"]
notebooks = ["ipykernel>=7.1.0"]
[project.urls]
"Homepage" = "https://github.com/simopt-admin/simopt"
"Documentation" = "https://simopt.readthedocs.io/en/latest/"
"Issues" = "https://github.com/simopt-admin/simopt/issues"