aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 10200e3385a7e1848621e335234a52b285af0be7 (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
30
31
[tool.poetry]
name = "epy-reader"
version = "2022.2.5"
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 = "*"
twine = "*"
wheel = "*"
ipdb = "*"
coverage = "*"

[tool.mypy]
strict_optional = true

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