-
Notifications
You must be signed in to change notification settings - Fork 505
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 2.11 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
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/MaxText/__init__.py"
[project]
name = "maxtext"
description = "MaxText is a simple, performant and scalable Jax LLM!"
dynamic = ["version", "optional-dependencies"]
requires-python = ">=3.12"
readme = "README.md"
license = "Apache-2.0"
keywords = ["llm", "jax", "llama", "mistral", "mixtral", "gemma", "deepseek"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: ML",
"Environment :: GPU :: NVIDIA CUDA :: 12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[tool.hatch.metadata.hooks.requirements_txt.optional-dependencies]
tpu = ["src/dependencies/requirements/generated_requirements/tpu-requirements.txt"]
tpu-post-train = ["src/dependencies/requirements/generated_requirements/tpu-post-train-requirements.txt"]
cuda12 = ["src/dependencies/requirements/generated_requirements/cuda12-requirements.txt"]
runner = ["src/dependencies/requirements/generated_requirements/runner-requirements.txt"]
docs = ["src/dependencies/requirements/requirements_docs.txt"]
[project.urls]
Repository = "https://github.com/AI-Hypercomputer/maxtext.git"
"Bug Tracker" = "https://github.com/AI-Hypercomputer/maxtext/issues"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/maxtext", "src/dependencies"]
[tool.hatch.build.targets.wheel.hooks.custom]
path = "build_hooks.py"
[project.scripts]
install_tpu_pre_train_extra_deps = "dependencies.scripts.install_pre_train_extra_deps:main"
install_cuda12_pre_train_extra_deps = "dependencies.scripts.install_pre_train_extra_deps:main"
install_tpu_post_train_extra_deps = "dependencies.scripts.install_post_train_extra_deps:main"
build_maxtext_docker_image = "dependencies.scripts.build_maxtext_docker_image:main"
upload_maxtext_docker_image = "dependencies.scripts.upload_maxtext_docker_image:main"