-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.02 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
[project]
name = "CliRenderer"
version = "0.1.8"
requires-python = ">=3.9"
authors = [
{ name = "ultraflame4", email = "[email protected]" }
]
description = "A CLI tool to render unicode art in the terminal"
readme = "README.md"
keywords = ["cli", "unicode", "art", "render", "terminal"]
license = { file = "LICENSE" }
[project.urls]
"Homepage" = "https://github.com/ultraflame4/CliR"
"Bug Tracker" = "https://github.com/ultraflame4/CliR/issues"
[project.scripts]
clirender = "CliRenderer.__main__:main"
#[build-system]
#build-backend = "setuptools.build_meta"
#requires = ["setuptools", "wheel"]
[tool.setuptools]
packages = ["CliRenderer"]
[tool.poetry]
name = "CliRenderer"
version = "0.1.6"
description = ""
authors = ["ultr42 <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numpy = "~1.26.1"
Pillow = "^10.1.0"
rich = "~13.6.0"
typer = "~0.9.0"
imageio = "~2.31.5"
validators = "~0.22.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"