-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (43 loc) · 963 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "noteshrunk"
version = "1.6.0"
description = "Document Color Palette Compression"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "suuuehgi"}
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
]
dependencies = [
"argcomplete",
"numpy",
"scikit-image",
"scikit-learn",
"scipy",
"Pillow",
]
[project.scripts]
noteshrunk = "src.noteshrunk:main"
[project.urls]
Homepage = "https://github.com/suuuehgi/noteshrunk"
Issues = "https://github.com/suuuehgi/noteshrunk/issues"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.hatch.build]
include = [
"src/noteshrunk.py",
"CHANGELOG.md",
"README.md",
"LICENSE",
]
exclude = [
"examples/*",
]