forked from google/grain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (49 loc) · 1.09 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
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "grain"
version = "0.2.13"
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.0a1; sys_platform != 'win32'",
"cloudpickle",
"dm-tree",
"etils[epath,epy]",
"more-itertools>=9.1.0",
"numpy",
"protobuf>=5.28.3",
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
]
[project.optional-dependencies]
testing = [
"pytest",
"attrs",
"dill",
"jax",
"jaxlib",
"jaxtyping",
"pyarrow",
"tensorflow-datasets",
]
parquet = [
"pyarrow",
]
[project.urls]
homepage = "https://github.com/google/grain"
[tool.setuptools.packages.find]
include = ["grain*"]
[tool.setuptools.package-data]
"*" = ["*.so", "*.pyd"]