28 lines
533 B
TOML
28 lines
533 B
TOML
[tool.poetry]
|
|
name = "tutor"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Correl Roush <correl@gmail.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
tornado = "^6.1"
|
|
click = "^8.0.1"
|
|
humanize = "^3.10.0"
|
|
httpx = "^0.18.2"
|
|
parsy = "^1.3.0"
|
|
jsonslicer = "^0.1.7"
|
|
tqdm = "^4.64.0"
|
|
psycopg = {extras = ["c", "pool"], version = "^3.0"}
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "*"
|
|
black = "*"
|
|
mypy = "*"
|
|
|
|
[tool.poetry.scripts]
|
|
tutor = 'tutor.cli:main'
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|