forked from google-deepmind/nanodo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (75 loc) · 2.17 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["flit_core>=3.9.0"]
build-backend = "flit_core.buildapi"
[project]
name = "nanodo"
dynamic = ["version"]
description = "A minimal ('nano') Transformer decoder-only ('do') library in JAX."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [
{name = "Google DeepMind", email = "[email protected]"},
]
keywords = [
"python",
"machine learning",
"llm",
"jax",
"flax",
"decoder-only",
"large language model",
"language modelling",
"artificial intelligence",
]
classifiers = [
"Environment :: Console",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
# copybara:strip_begin(internal)
# TODO: add support for python 3.12 after
# https://github.com/tensorflow/datasets/issues/4666
# https://github.com/google/array_record/issues/94
# are fixed.
# copybara:strip_end
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
]
dependencies = [
"absl-py>=2.1.0",
"clu>=0.0.12",
"flax>=0.8.2",
"grain>=0.1.0",
"jax>=0.4.26",
"jaxlib>=0.4.26",
"ml-collections>=0.1.1",
"numpy>=1.26.0",
"optax>=0.2.2",
"orbax>=0.1.7",
"sentencepiece>=0.2.0",
"tensorflow_datasets>=4.9.5",
"tensorflow>=2.16.1",
]
[project.urls]
homepage = "https://github.com/google-deepmind/nanodo"
repository = "https://github.com/google-deepmind/nanodo"
# documentation = "https://nanodo.readthedocs.io/"
[project.optional-dependencies]
test = [
"chex>=0.1.86",
]
[tool.setuptools.packages.find]
where = ["nanodo"]
include = ["README.md", "LICENSE"]
exclude = ["*_test.py"]