-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (30 loc) · 931 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "robustocs"
version = "0.2.1"
dependencies = [
"numpy >= 1.21",
"scipy >= 1.8.0",
# NLP added in 11.0.0, NumPy 2.x support in this version
"gurobipy >= 11.0.3",
# HiGHS modelling language commands were added in this version
"highspy >= 1.7.2",
]
requires-python = ">= 3.10"
authors = [
{ name="Josh Fogg", email="[email protected]" },
]
description = "Tools for solving robust optimal contribution selection problems"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
[project.urls]
Homepage = "https://github.com/Foggalong/RobustOCS"
Documentation = "https://github.com/Foggalong/RobustOCS/wiki"
Issues = "https://github.com/Foggalong/RobustOCS/issues"