forked from google-deepmind/gemma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 1 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
[tool.poetry]
name = "gemma"
version = "1.0.0"
description = "Open weights large language model (LLM) from Google DeepMind."
authors = [
"Alek Andreev <alekandreev@google.com>",
"Armand Joulin <ajoulin@google.com>",
"Cassidy Hardin <cassidyhardin@google.com>",
"Juliette Love <juliettelove@google.com>",
"Kathleen Kenealy <kkenealy@google.com>",
"Laurent Sifre <sifre@google.com>",
"Léonard Hussenot <hussenot@google.com>",
"Mihir Sanjay Kale <mihirkale@google.com>",
"Morgane Riviere <mriviere@google.com>",
"Robert Dadashi <dadashi@google.com>",
"Shreya Pathak <shreyapa@google.com>",
"Surya Bhupatiraju <sbhupatiraju@google.com>",
"Thomas Mesnard <mesnard@google.com>"
]
python-version = "3.10"
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
absl-py = "^2.1.0"
sentencepiece = "^0.1.99"
flax = ">=0.8"
pytest = {version = "^8.0.0", optional = true}
[tool.poetry.extras]
test = ["pytest"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"