anki-sync-server/pyproject.toml

31 lines
631 B
TOML
Raw Normal View History

2020-07-31 03:11:45 +08:00
[tool.poetry]
name = "anki-sync-server"
2020-12-28 04:43:05 +08:00
version = "2.3.0"
2020-07-31 03:11:45 +08:00
description = "Self-hosted Anki Sync Server."
authors = ["Vikash Kothary <kothary.vikash@gmail.com>"]
2020-12-24 07:24:31 +08:00
packages = [
{ include = "ankisyncd", from = "src" }
]
2020-07-31 03:11:45 +08:00
[tool.poetry.dependencies]
2020-12-24 06:45:41 +08:00
python = "^3.8"
2021-06-11 11:46:30 +08:00
anki = "2.1.43"
beautifulsoup4 = "^4.9.1"
requests = "^2.24.0"
markdown = "^3.2.2"
send2trash = "^1.5.0"
decorator = "^4.4.2"
psutil = "^5.7.2"
distro = "^1.5.0"
2020-07-31 05:18:52 +08:00
webob = "^1.8.6"
2020-07-31 03:11:45 +08:00
[tool.poetry.dev-dependencies]
mkdocs = "^1.1.2"
jupyter = "^1.0.0"
jupyterlab = "^2.2.2"
2020-12-24 07:14:33 +08:00
webtest = "^2.0.35"
2020-07-31 03:11:45 +08:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"