forked from wavenumber-eng/altium_monkey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (55 loc) · 1.29 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "altium-monkey"
dynamic = ["version"]
description = "A toolkit for manipulating Altium files"
readme = "README.md"
license = "AGPL-3.0-or-later"
license-files = ["LICENSE"]
requires-python = ">=3.11,<3.13"
authors = [
{ name = "Eli Hughes", email = "ehughes@wavenumber.net" },
]
dependencies = [
"pillow==11.2.1",
"freetype-py",
"uharfbuzz",
"wn-geometer==2026.5.25",
"lxml==6.0.2",
"lz4>=4.4.5",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
examples = [
"cadquery",
]
release = [
"build>=1.2",
"pytest>=8.0",
"twine>=5.0",
]
test = [
"cadquery",
"pytest>=8.0",
]
[project.urls]
Homepage = "https://github.com/wavenumber-eng/altium_monkey"
Repository = "https://github.com/wavenumber-eng/altium_monkey"
[tool.hatch.build.targets.sdist]
include = [
"src/py/altium_monkey/**",
"README.md",
"LICENSE",
]
[tool.hatch.build.targets.wheel]
packages = ["src/py/altium_monkey"]
[tool.hatch.version]
path = "src/py/altium_monkey/_version.py"