-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 754 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ascii_magic"
version = "2.7.5"
description = "Converts pictures into ASCII art"
readme = "README.md"
license = "MIT"
requires-python = ">= 3.6"
authors = [
{ name = "Leandro Barone", email = "web@leandrobarone.com.ar" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"Pillow",
]
[project.urls]
Homepage = "https://github.com/LeandroBarone/python-ascii_magic"
[tool.setuptools.packages.find]
include = ["ascii_magic*"]
[tool.setuptools.package-data]
"ascii_magic" = [
"fonts/courier_prime.ttf",
"tests/lion.jpg",
"tests/chicken_transparent.png",
]