aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: c04f92d82544759e2552b9bb98abf906e79724b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[tool.poetry]
name = "epy-reader"
version = "2022.2.14"
description = "CLI Ebook Reader"
authors = ["Benawi Adha <benawiadha@gmail.com>"]
license = "GPL-3.0"
packages = [
    { include = "epy.py" },
    { include = "epy_extras" },
]

[tool.poetry.dependencies]
python = "^3.7"
windows-curses = { version = "*", markers = "platform_system == 'Windows'" }

[tool.poetry.dev-dependencies]
pynvim = "*"
mypy = "*"
black = "*"
pytest = "*"
ipdb = "*"
coverage = "*"

[tool.mypy]
strict_optional = true

[tool.black]
line-length = 100
target-version = ['py38']