summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 508a7d58319c6ee00e96d4578486acf5ffa2db65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tool.poetry]
name = "kanji-info-fetcher"
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 = "kanji_info_fetcher:main"