File size: 757 Bytes
bc37871 e7ae456 bc37871 e7ae456 bc37871 e7ae456 bc37871 | 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 | [project]
name = "gridops"
version = "0.1.0"
description = "Community Microgrid RL Environment — OpenEnv Hackathon"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"openenv-core>=0.2.3",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0",
"numpy>=1.24.0",
"websockets>=12.0",
"openai>=1.0.0",
"requests>=2.28.0",
]
[project.optional-dependencies]
dev = ["pytest", "httpx", "matplotlib"]
inference = ["openai"]
[project.scripts]
server = "server.app:main"
[tool.setuptools.packages.find]
include = ["gridops*", "server*"]
exclude = ["notebooks*", "sft_traces*", "tests*", "round_1*", "portfolio_env*"]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
|