-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 938 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 938 Bytes
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
[build-system]
requires = ["setuptools>=61", "wheel", "cython", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "koba"
version = "0.6.2"
description = "Terminal Image/Video Renderer"
readme = "README.md"
requires-python = ">=3.9,<4.0"
license = "GPL-3.0-only"
license-files = ["LICENSE"]
authors = [
{name = "simon0302010", email = "simon0302010@gmail.com"}
]
dependencies = [
"numpy>=2.0.0",
"Pillow>=9.5.0",
"click>=8.0.0",
"matplotlib>=3.9.0",
"scikit-image>=0.24.0",
"tqdm>=4.67.1",
"fonttools>=4.58.0",
"moviepy>=2.0.0",
"rich>=13.0.0"
]
classifiers = [
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows"
]
[project.optional-dependencies]
test = ["pytest", "pytest-mock"]
[project.urls]
Homepage = "https://github.com/simon0302010/koba"
[project.scripts]
koba = "koba.main:main"
[tool.setuptools.packages.find]
include = ["koba*"]