mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 19:03:01 +02:00
git-subtree-dir: Programming/EARIN git-subtree-mainline:635e287095git-subtree-split:a09c96dd65
20 lines
473 B
TOML
20 lines
473 B
TOML
[tool.poetry]
|
|
name = "python-template"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10.0,<3.11"
|
|
numpy = "^1.22.2"
|
|
replit = "^3.2.4"
|
|
Flask = "^2.2.0"
|
|
urllib3 = "^1.26.12"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
debugpy = "^1.6.2"
|
|
replit-python-lsp-server = {extras = ["yapf", "rope", "pyflakes"], version = "^1.5.9"}
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api" |