-
Notifications
You must be signed in to change notification settings - Fork 198
/
pyproject.toml
57 lines (51 loc) · 1.77 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = [
"setuptools>=68.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "Wand"
authors = [
{name = "Hong Minhee", email = "[email protected]"},
]
maintainers = [
{name = "E. McConville", email = "[email protected]"},
]
description = "Ctypes-based simple MagickWand API binding for Python"
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.7"
keywords = ["ImageMagick", "ctypes"]
license = {text = "MIT License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: Stackless",
"Topic :: Multimedia :: Graphics",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest >= 7.2.0"]
doc = ["Sphinx >= 7.2.6"]
[project.urls]
Homepage = "https://example.com"
Documentation = "https://docs.wand-py.org"
Repository = "https://github.com/emcconville/wand"
Tracker = "https://github.com/emcconville/wand/issues"
Changelog = "https://docs.wand-py.org/en/latest/changes.html"
[tools.setuptools]
packages = ["wand", "wand.cdefs"]
[tool.setuptools.packages.find]
include = ["wand", "wand.cdefs"]
exclude = ["prof", "temp", "sample", "support"]
[tool.setuptools.dynamic]
version = { attr = "wand.VERSION" }