-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
54 lines (43 loc) · 930 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "piecemaker"
dynamic = ['version']
description = "Create jigsaw puzzle pieces from an image"
readme = "README.md"
license.text = "LGPLv3+"
requires-python = ">=3.8, <4"
authors = [
{ name = "Jake Hickenlooper", email = "[email protected]" },
]
dependencies = [
"Pillow >= 8.4.0, < 11",
"pixsaw >= 0.3.4, <0.4",
"beautifulsoup4",
"future",
"lxml", # wanted by beautifulsoup4
"svgwrite >= 1.4.1",
"Rtree"
]
[project.urls]
Homepage = "https://github.com/jkenlooper/piecemaker"
[project.optional-dependencies]
test = [
"coverage",
"pytest",
]
dev = [
]
[project.scripts]
piecemaker = "piecemaker.script:piecemaker"
[tool.hatch.version]
path = "src/piecemaker/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"src",
]
[tool.hatch.build.targets.wheel]
packages = [
"src/piecemaker",
]