structural_design_env / pyproject.toml
Ayush-Singh's picture
Fix Phase 2 Task Validation: add missing OpenEnv required API endpoints
b7854d3
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "structural-design-env"
version = "1.0.0"
description = "StructuralDesignEnv — Steel Frame OpenEnv Environment with Eurocode 3 physics"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Ayush Singh", email = "ayushsingh73920@gmail.com"}
]
keywords = ["openenv", "reinforcement-learning", "structural-engineering", "eurocode", "physics", "llm"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
"httpx>=0.24.0",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
"numpy>=1.24.0",
"scipy>=1.10.0",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"httpx>=0.24.0",
]
openenv = [
"openenv-core>=0.2.3",
]
[project.urls]
Homepage = "https://github.com/ayushsi42/structural_design_env"
Repository = "https://github.com/ayushsi42/structural_design_env"
[tool.setuptools.packages.find]
where = ["."]
include = ["structural_design_env*", "server*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]