-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 965 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
[project]
name = "czpeedy"
version = "0.2.3"
description = "A command-line tool used to determine the tensorstore settings which yield the fastest write speed on a given machine."
authors = [
{ name = "Seth Hinz", email = "[email protected]" }
]
dependencies = [
"numpy>=2.0.0",
"termcolor>=2.4.0",
"tensorstore>=0.1.63",
"ruff>=0.5.3",
]
readme = "README.md"
requires-python = ">= 3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
czpeedy = "czpeedy.czpeedy:main"
[project.urls]
Homepage = "https://github.com/royerlab/czpeedy"
Issues = "https://github.com/royerlab/czpeedy/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/czpeedy"]