-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.04 KB
/
pyproject.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "dcs-xkcd-cli"
version = "2.0.0"
description = "Get your daily dose of xkcd directly from the terminal! 🤩"
authors = ["dotcs <[email protected]>"]
readme = "Readme.md"
license = "MIT"
keywords = ["cli", "cli-app", "xkcd", "xkcd-comics"]
homepage = "https://github.com/dotcs/xkcd-cli"
repository = "https://github.com/dotcs/xkcd-cli"
include = [
"LICENSE",
]
packages = [
{include = "xkcd_cli"}
]
[tool.poetry.dependencies]
python = "^3.8"
beautifulsoup4 = "^4.11"
requests = "^2.27"
typer = "^0.4"
Pillow = "^9.1.1"
[tool.poetry.dev-dependencies]
black = "^22.3"
pyright = "^1.1"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
[tool.poetry.scripts]
xkcd = "xkcd_cli.xkcd:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
include = ["xkcd_cli"]
exclude = [
"**/node_modules",
"**/__pycache__",
]
pythonVersion = "3.8"
pythonPlatform = "Linux"
[tool.black]
line-length = 88
target-version = ['py38']
[tool.coverage.run]
branch = true
omit = ["*_test.py"]