-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
51 lines (43 loc) · 1.14 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
[tool.poetry]
name = "to-ascii"
version = "6.0.1"
description = "Convert videos, images, gifs, and even live video to ASCII art!"
authors = ["Milo Weinberg <iapetus011@gmail.com>"]
license = "MIT"
packages = [
{ include = "toascii" }
]
readme = "README.md"
repository = "https://github.com/Iapetus-11/To-ASCII"
keywords = ["ascii", "color", "colors", "ascii-art", "video", "image", "nim"]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.23.1"
opencv-python = "^4.6.0"
colorama = "^0.4.5"
nimporter = { version = "^1.1.0", optional = true}
pydantic = "^1.9.1"
click = { version = "^8.1.3", optional = true}
[tool.poetry.extras]
speedups = ["nimporter"]
cli = ["click"]
[tool.poetry.scripts]
toascii = "toascii.cli:toascii_command"
[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
black = "^22.8.0"
ruff = "^0.1.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py38']
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 100
[tool.ruff]
line-length = 100
#ignore = ["E501", "E266", "E203", "E741", "W293", "W291"]
target-version = "py38"