forked from google/grain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 1005 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
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "grain"
version = "0.0.1"
description = "Grain: A library for loading and transforming data for neural network training."
keywords = []
authors = [
{name = "Grain team", email = "[email protected]"},
]
dependencies = [
'absl-py',
'array-record',
'cloudpickle',
'dm-tree',
'etils[epath]',
'jaxtyping',
'more-itertools>=9.1.0',
'numpy',
]
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 = [
'dill',
'jax',
'jaxlib',
'tensorflow',
'tensorflow-datasets',
]
[project.urls]
homepage = "https://github.com/google/grain"
[tool.setuptools.packages.find]
include = ["grain*"]
[tool.setuptools.package-data]
"*" = ["*.so"]