-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 1.61 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "pyautotrace"
version = "0.0.7"
description = "Python bindings for AutoTrace."
readme = "README.md"
license = "LGPL-2.1-or-later"
license-files = ["LICENSE.txt", "LICENSE-autotrace.txt"]
requires-python = ">=3.10"
authors = [{ name = "Lemonyte", email = "[email protected]" }]
keywords = ["autotrace", "bitmap", "graphics", "tracing", "vector"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Scientific/Engineering :: Image Processing",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/lemonyte/pyautotrace"
[project.scripts]
pyautotrace = "autotrace.__main__:main"
[dependency-groups]
dev = [
"cython~=3.2.2",
"prek~=0.2.27",
"setuptools~=80.0.0",
"ty~=0.0.2",
{include-group = "standard"},
]
standard = [
"numpy>=2.0.0,<3.0.0",
"pillow>=12.2.0,<13.0.0",
]
test = [
{include-group = "standard"},
]
docs = [
"mkdocstrings-python~=2.0.1",
"ruff~=0.14.9",
"zensical~=0.0.33",
]
[build-system]
requires = ["cython~=3.2.2", "setuptools~=80.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
package-data = { autotrace = ["py.typed"] }
[tool.cibuildwheel]
skip = "pp*"
archs = ["auto64"]
build-frontend = "build[uv]"
macos = { archs = ["universal2"] }
[tool.ruff]
src = ["src"]
line-length = 119
target-version = "py310"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["A", "D"]