-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.03 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
[build-system]
requires = [
"setuptools>=45",
"cffi>=1.1",
]
build-backend = "setuptools.build_meta"
[project]
name = "Pil-Lite"
authors = [{ name="Alexey Vasilyev", email="[email protected]" }]
description = "Python Imaging Library Lite"
requires-python = ">=3.8"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
]
dependencies = ["cffi>=1.1"]
dynamic = ["version", "readme"]
[project.urls]
Homepage = "https://github.com/alexa-infra/pil-lite"
Issues = "https://github.com/alexa-infra/pil-lite/issues"
[project.optional-dependencies]
tests = ["pytest"]
[tool.setuptools.dynamic]
version = {attr = "PilLite.__version__"}
readme = {file = ["README.rst"]}