gridops / pyproject.toml
77ethers's picture
Deploy India case study and premium visuals
e7ae456 verified
raw
history blame contribute delete
757 Bytes
[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"