-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.05 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
41
42
43
44
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "grain"
version = "0.2.17"
description = "Grain: A library for loading and transforming data for ML training."
keywords = []
authors = [
{name = "Grain team", email = "grain-dev@google.com"},
]
dependencies = [
"absl-py",
"array-record>=0.8.1; sys_platform != 'win32'",
"cloudpickle",
"etils[epath,epy]",
"numpy",
"protobuf>=5.28.3",
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.optional-dependencies]
parquet = [
"pyarrow",
]
[project.urls]
homepage = "https://github.com/google/grain"
[tool.setuptools.packages.find]
include = ["grain*"]
[tool.setuptools.package-data]
"*" = ["*.so", "*.pyd", "testdata/*.array_record-*", "testdata/*.tfrecord"]