-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 928 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 928 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = 'drjax'
description = 'DrJAX - Scalable and Differentiable MapReduce Primitives in JAX.'
readme = 'README.md'
requires-python = '>=3.9'
license = {file = 'LICENSE'}
authors = [
{name = "Keith Rush", email = "krush@google.com"},
{name = "Zachary Charles", email = "zachcharles@google.com"},
{name = "Zachary Garrett", email = "zachgarrett@google.com"},
]
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Science/Research',
]
keywords = ["parallel", "mapreduce", "machine", "learning", "jax"]
dependencies = [
'absl-py>=1.0,<3.0',
'jax>=0.4.24',
'jaxlib>=0.4.24',
]
dynamic = ['version']
[project.urls]
Homepage = 'https://github.com/google/drjax'
Repository = 'https://github.com/google/drjax'
[tool.setuptools.dynamic]
version = {attr = "drjax.__version__"}