-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 1015 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
33
34
35
36
37
38
39
40
41
[project]
name = "skypie-oracle"
version = "0.1"
license = { file = "LICENSE" }
readme = "README.md"
description = "A package allowing to query SkyPIE oracles"
authors = [{name = "Tiemo Bang", email = "[email protected]"}]
classifiers= [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
keywords = ["object placement", "optimization", "exact", "oracle"]
requires-python = ">=3.7"
dependencies = [
"skypie-proto-messages==0.1",
"skypie-baselines>=0.1",
"cvxpy==1.3.2",
"Mosek==10.1.10",
"numpy==1.25.2",
"torch>=2.2.0",
"pandas==2.0.3",
"psutil>=5",
"polars[pandas,pyarrow,numpy]>=0.20.0"
]
[project.urls]
Homepage = "https://github.com/hydro-project/cloud_oracle"
[build-system]
requires = ["setuptools>=61.0.0", "pip>=23"]
build-backend = "setuptools.build_meta"
[options.packages.find]
where = "src"
[tool.setuptools]
include-package-data = true
[project.optional-dependencies]
dev = ["pip-tools", "pytest"]