-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (32 loc) · 1.15 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 = ["setuptools>=61.0", "wheel", "pybindgen"]
build-backend = "setuptools.build_meta"
[project]
name = "dither-go"
version = "0.4.0"
authors = [{name = "tfuxu"}]
description = "A fast and the most correct image dithering library"
keywords = ["golang", "bindings", "dithering", "processing"]
readme = "README_PyPI.md"
dependencies = [
"simple_parsing"
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
]
[project.urls]
"Homepage" = "https://github.com/tfuxu/dither-go"
"Bug Tracker" = "https://github.com/tfuxu/dither-go/issues"
[tool.setuptools]
packages = ["dither_go", "dither_go.bindings", "dither_go.utils"]