-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 1.01 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
[project]
name = "augmax"
version = "0.4.1"
description = "Efficiently Composable Data Augmentation on the GPU with Jax"
readme = "README.md"
authors = [
{ name = "Konrad Heidler", email = "k.heidler@tum.de" }
]
requires-python = ">=3.9.0"
dependencies = [
"einops>=0.3",
"jax>=0.1",
"numpy>=1.22",
]
license = "Apache-2.0"
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
]
[project.urls]
Repository = "https://github.com/khdlr/augmax"
Issues = "https://github.com/khdlr/augmax/issues"
Documentation = "https://augmax.readthedocs.io/en/latest/"
[build-system]
requires = ["uv_build>=0.7.3,<0.8", "uv-dynamic-versioning"]
build-backend = "uv_build"