mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-29 18:14:15 -05:00
21 lines
388 B
TOML
21 lines
388 B
TOML
[tool.poetry]
|
|
name = "foo-bar"
|
|
version = "0.1.0"
|
|
description = "Foo Bar Python Project"
|
|
authors = []
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
python-lsp-server = "^1.2"
|
|
flake8 = "^3.9"
|
|
flake8-annotations = "^2.6"
|
|
|
|
[tool.poetry.scripts]
|
|
foo-bar = 'foo_bar:main'
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|