workflow-twin / pyproject.toml
NDGCodes's picture
fix package import for server
05c83c4
raw
history blame contribute delete
479 Bytes
[project]
name = "workflow-twin"
version = "0.1.0"
description = "OpenEnv workflow simulation environment with quantized memory"
authors = [{ name = "NDGCodes" }]
requires-python = ">=3.10"
dependencies = [
"fastapi",
"uvicorn",
"pydantic",
"numpy",
"openenv-core",
"openai"
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
server = "server.app:main"
workflow-twin-server = "server.app:main"