-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 882 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "clax"
dynamic = ["version"]
authors = [
{ name="David Yallup", email="[email protected]" },
]
description = "Prebuilt jax classifiers"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
dependencies = [
"flax >= 0.8.2",
"tqdm >= 4.62.0",
"optax >= 0.2.2",
"jaxopt",
]
[options.extras_require]
test = [
"pytest >= 7.3",
"pytest-cov >= 4.0",
]
metal = [
"jax-metal >= 0.1.0",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "flake8", "pydocstyle", "packaging", "pre-commit"]
metal = ["jax-metal"]
[tool.setuptools.dynamic]
version = {attr = "clax._version.__version__"}
[tool.flake8]
max-line-length = 88
extend-ignore = ['E203', 'W503', "F401"]
[tool.isort]
profile = 'black'
skip_gitignore = true