forked from google-deepmind/gemma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 1.09 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
[tool.poetry]
name = "gemma"
version = "1.0.0"
description = "Open weights large language model (LLM) from Google DeepMind."
authors = [
"Alek Andreev <[email protected]>",
"Armand Joulin <[email protected]>",
"Cassidy Hardin <[email protected]>",
"Juliette Love <[email protected]>",
"Kathleen Kenealy <[email protected]>",
"Laurent Sifre <[email protected]>",
"Léonard Hussenot <[email protected]>",
"Michelle Casbon <[email protected]>",
"Mihir Sanjay Kale <[email protected]>",
"Morgane Riviere <[email protected]>",
"Ravin Kumar <[email protected]>",
"Robert Dadashi <[email protected]>",
"Shreya Pathak <[email protected]>",
"Surya Bhupatiraju <[email protected]>",
"Thomas Mesnard <[email protected]>"
]
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"