-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
54 lines (50 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
###############################################################################
# mpi-sppy: MPI-based Stochastic Programming in PYthon
#
# Copyright (c) 2024, Lawrence Livermore National Security, LLC, Alliance for
# Sustainable Energy, LLC, The Regents of the University of California, et al.
# All rights reserved. Please see the files COPYRIGHT.md and LICENSE.md for
# full copyright and license information.
###############################################################################
[build-system]
requires = ["setuptools >= 68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mpi-sppy"
version = "0.13.2.dev0"
authors = [
{name = "David Woodruff", email = "dlwoodruff@ucdavis.edu" },
]
description = "mpi-sppy"
readme = "README.md"
license = { file = "LICENSE.md" }
requires-python = ">=3.9"
dependencies = [
"numpy",
"sortedcollections",
"pyomo>=6.4",
]
[project.urls]
homepage = "https://github.com/Pyomo/mpi-sppy"
source = "https://github.com/Pyomo/mpi-sppy"
download = "https://github.com/Pyomo/mpi-sppy"
documentation = "https://mpi-sppy.readthedocs.io"
tracker = "https://github.com/Pyomo/mpi-sppy/issues"
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx-copybutton",
"sphinx_rtd_theme",
]
mpi = [
"mpi4py>=3.0.3"
]
scipy = [
"scipy",
]
pandas = [
"pandas",
]
plot = [
"matplotlib",
]