demo-int-table/pyproject.toml

22 lines
485 B
TOML

[tool.poetry]
name = "interactive-table"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
Django = "^5.0.4"
djangorestframework = "^3.15.1"
taskipy = "^1.12.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.taskipy.tasks]
server = "manage.py runserver"
front = "cd front && npm run build && npm run preview"
front_dev = "cd front && npm run dev"