-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 2.13 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (67 loc) · 2.13 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
71
72
73
74
75
76
77
[project]
name = "gerbolyze"
version = "3.3.0"
description = """A high-resolution image-to-PCB converter. Gerbolyze plots SVG, PNG and JPG onto existing gerber \
files. It handles almost the full SVG spec and deals with text, path outlines, patterns, arbitrary paths with \
self-intersections and holes, etc. fully automatically. It can vectorize raster images both by contour tracing and by \
grayscale dithering. All processing is done at the vector level without intermediate conversions to raster images \
accurately preserving the input."""
readme = "README.rst"
license = "AGPL-3.0-or-later"
requires-python = ">=3.12"
dependencies = [
'gerbonara >= 1.2.0',
'beautifulsoup4',
'numpy',
'python-slugify',
'lxml',
'click',
'svg-flatten-wasi >= 3.2.0']
authors = [
{ name = "jaseg" },
]
maintainers = [
{ name = "Gerbolyze maintainers", email = "gerbonara@jaseg.de" },
]
keywords = ["gerber", "excellon", "pcb", "RS274x", "EDA"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"Intended Audience :: Religion",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Artistic Software",
"Topic :: Utilities",
"Topic :: Multimedia :: Graphics",
"Topic :: Printing",
]
[project.urls]
Homepage = "https://jaseg.de/projects/gerbolyze/"
Source = "https://git.jaseg.de/gerbolyze"
Tracker = "https://github.com/jaseg/gerbolyze/issues"
[project.scripts]
gerbolyze = "gerbolyze:cli"
[project.optional-dependencies]
resvg-wasi = ["resvg-wasi >= 0.47.0"]
[dependency-groups]
dev = [
"pytest",
"pytest-xdist",
"numpy",
"scipy",
"tqdm",
"beautifulsoup4",
"lxml",
"pillow"
]
[build-system]
requires = ["uv-build < 0.11"]
build-backend = "uv_build"
[tool.pytest]
testpaths = ["tests"]
norecursedirs = ["*"]