-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 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
[build-system]
requires = ["cython", "numpy", "setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["dependencies"]
name = "fezzypixels"
version = "0.0.1"
authors = [{name="bullbin"}]
description = "High-quality RGB555 dithering and paletting library"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion"
]
[project.urls]
Homepage = "https://github.com/bullbin/fezzypixels"
Repository = "https://github.com/bullbin/fezzypixels.git"
Issues = "https://github.com/bullbin/fezzypixels/issues"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.package-data]
"*" = ["*.png"]