forked from jax-ml/jax-ai-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.23 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
[project]
name = "jax_ml_stack"
version = "0.0.0" # keep in sync with jax_ml_stack/__init__.py
description = ""
readme = "README.md"
license = {file = "LICENSE"}
authors = [{name = "jax_ml_stack authors", email="jax_ml_stack@google.com"}]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
]
keywords = []
# pip dependencies of the project
dependencies = [
"jax==0.4.31",
"flax==0.8.5",
"optax==0.2.3",
"orbax==0.1.9",
]
[project.urls]
homepage = "https://github.com/jax-ml/jax_ml_stack"
repository = "https://github.com/jax-ml/jax_ml_stack"
# Other: `documentation`, `changelog`
[project.optional-dependencies]
# Development deps (unittest, linting, formating,...)
# Installed through `pip install .[dev]`
dev = [
"pytest",
"pytest-xdist",
]
[tool.pyink]
# Formatting configuration to follow Google style-guide
line-length = 80
preview = true
pyink-indentation = 2
pyink-use-majority-quotes = true
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
]
[tool.setuptools]
packages = ["jax_ml_stack"]
include-package-data = false