22 lines
431 B
TOML
22 lines
431 B
TOML
[tool.poetry]
|
|
name = "redstring"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
flask = "^1.1.2"
|
|
flask-login = "^0.5.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
mypy = "^0.800"
|
|
|
|
[tool.poetry.scripts]
|
|
redstring-check = "redstring.parser:main"
|
|
redstring-server = "redstring.server:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|