summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 74e45ed5509e839f3f699d0d074812f8d2700463 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tool.poetry]
name = "attain-vocab-to-anki-py"
version = "0.1.0"
description = ""
authors = ["Jan Tuomi <jan.tuomi@valuemotive.com>"]

[tool.poetry.dependencies]
python = "^3.7"
beautifulsoup4 = "^4.9.3"
requests = "^2.25.0"

[tool.poetry.dev-dependencies]
pytest = "^5.2"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.scripts]
main = "attain_vocab_to_anki_py:main"