-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 1.07 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
[project]
name = "collatable"
version = "0.6.0"
description = "Constructing batched tensors for any machine learning tasks"
authors = [
{name="altescy", email="me@altescy.jp"},
]
license = "MIT"
readme = "README.md"
keywords = ["python", "machine learning"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8,<4.0"
dependencies = [
"numpy>=1.0.0,<1.26.4; python_version < '3.9'",
"numpy>=1.26.4; python_version >= '3.9'",
]
[project.urls]
Homepage = "https://github.com/altescy/collatable"
Issues = "https://github.com/altescy/collatable/issues"
[dependency-groups]
dev = [
"pyright>=1.1.394",
"pytest>=8.3.4",
"ruff>=0.9.6",
]
[build-system]
requires = ["uv_build>=0.7.19,<0.9.0"]
build-backend = "uv_build"