36 lines
823 B
TOML
36 lines
823 B
TOML
[tool.poetry]
|
|
name = "qtable-negotiation-demo"
|
|
version = "0.1.0"
|
|
description = "Q-Table 기반 협상 전략 강화학습 데모"
|
|
authors = ["Demo Author <demo@example.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
fastapi = "^0.104.1"
|
|
uvicorn = {extras = ["standard"], version = "^0.24.0"}
|
|
streamlit = "^1.28.0"
|
|
pandas = "^2.1.0"
|
|
numpy = "^1.24.0"
|
|
matplotlib = "^3.7.0"
|
|
seaborn = "^0.12.0"
|
|
plotly = "^5.17.0"
|
|
python-dotenv = "^1.0.0"
|
|
pydantic = "^1.10.12"
|
|
requests = "^2.31.0"
|
|
scikit-learn = "^1.3.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.4.0"
|
|
black = "^23.9.0"
|
|
flake8 = "^6.1.0"
|
|
mypy = "^1.6.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
start-api = "app.main:start_api"
|
|
start-frontend = "frontend.app:start_frontend"
|