-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
69 lines (65 loc) · 1.81 KB
/
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
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
69
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sustaingym"
version = "0.1.7"
authors = [
{ name="Christopher Yeh", email="[email protected]" },
]
description = "SustainGym: Reinforcement Learning Environments for Sustainable Energy Systems"
readme = "README.md"
license = { text="CC BY 4.0" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"pettingzoo==1.24.*",
"gymnasium==0.28.*",
"numpy>=1.23"
]
[project.optional-dependencies]
# Update dependencies in `all` if any are added or removed
all = [
"acnportal>=0.3.3",
"cvxpy>=1.3, <2", # semver
"mosek>=10.0.44, <11", # semver
"openpyxl>=3.1",
"onnxruntime>=1.15, <2", # semver
"pandas>=1.1, <3", # semver
"pvlib>=0.10",
"pytz",
"requests>=2.31.0", # semver
"scikit-learn>=1.1.1", # semver
"scipy>=1.0",
"xlrd>=2",
]
building = [
"cvxpy>=1.3, <2", # semver
"pvlib>=0.10",
"scikit-learn>=1.1.1", # semver
"scipy>=1.0",
]
cogen = [
"onnxruntime>=1.15, <2", # semver
"openpyxl>=3.1",
"pandas>=1.1, <3", # semver
"xlrd>=2",
]
evcharging = [
"acnportal>=0.3.3",
"cvxpy>=1.3, <2", # semver
"mosek>=10.0.44, <11", # semver
"pandas>=1.1, <3", # semver
"pytz",
"requests>=2.31.0", # semver
"scikit-learn>=1.1.1", # semver
]
[project.urls]
Homepage = "https://chrisyeh96.github.io/sustaingym/"
Repository = "https://github.com/chrisyeh96/sustaingym"
"Bug Tracker" = "https://github.com/chrisyeh96/sustaingym/issues"
[tool.setuptools.package-data]
"*" = ["*.csv", "*.csv.gz", "*.epw", "*.htm", "*.json", "*.onnx", "*.pkl", "*.xlsx"]