-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 922 Bytes
/
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
[tool.poetry]
name = "ascii_video"
version = "0.1.0"
description = "Converts a video into an ASCII text representation of each frame and plays it at a given frame rate"
license = "MIT"
authors = ["Dan <[email protected]>"]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.10"
opencv-python = "^4.6.0"
numpy = "^1.23.5"
Cython = "^0.29.32"
[tool.poetry.dev-dependencies]
[tool.black]
line-length = 125
skip-string-normalization = true
[tool.pyright]
pythonVersion = "3.10"
typeCheckingVersion = "basic"
reportUnusedImport = "warning"
reportUnnecessaryTypeIgnoreComment = "warning"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"