-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
38 lines (33 loc) · 1.08 KB
/
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
[project]
name = "rechunk"
version = "0.0.1"
authors = [
{ name="Kapenekakis Antheas", email="[email protected]" },
]
description = "Rechunk. A tool for reprocessing OCI images to optimize pulling."
readme = "readme.md"
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"PyYAML>=6.0.1",
"rich>=13.5.2",
"numpy>=2.0.0",
"tqdm>=4.66.4",
]
[project.urls]
"Homepage" = "https://github.com/todo"
"Bug Tracker" = "https://github.com/todo/issues"
[project.entry-points."console_scripts"]
rechunk = "rechunk.__main__:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["rechunk*"] # package names should match these glob patterns (["*"] by default)