-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
44 lines (40 loc) · 916 Bytes
/
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
[project]
name = "webp"
version = "0.3.0"
description = "Python bindings for WebP"
readme = { content-type = "text/markdown", file = "README.md" }
authors = [{ name = "Aiden Nibali", email = "dismaldenizen@gmail.com" }]
requires-python = ">=3.8"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"Pillow>=4.0.0",
"cffi>=1.12",
"numpy>=1.0.0",
]
[project.optional-dependencies]
test = [
"pytest",
]
dev = [
"build>=1.0.0",
"conan>=2.0",
"conda-lock>=2.0.0",
"twine",
]
[project.urls]
Homepage = "https://github.com/anibali/pywebp"
[build-system]
requires = [
"cffi>=1.12",
"conan>=2.0",
"setuptools>=45",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["webp"]