-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.17 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 = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ebm"
description = "Implementation of an EBM trained using NCE."
authors = [{name = "Simon Dirmeier", email = "simd23@pm.me"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.11"
dependencies = [
"jax-ai-stack",
"tensorflow-probability[jax]>=0.25.0",
"tensorflow>=2.20.0",
"tensorflow-datasets>=4.9.9",
"ml-collections>=1.1.0",
"flax>=0.11.1",
]
dynamic = ["version"]
[dependency-groups]
dev = [
"pre-commit",
"ruff",
]
experiments = [
"matplotlib>=3.10.7",
]
[tool.setuptools]
packages = ["ebm"]
[tool.setuptools.dynamic]
version = {attr = "ebm.__init__.__version__"}
[tool.ruff]
indent-width = 2
line-length = 80
[tool.ruff.lint.pydocstyle]
convention= 'google'
[tool.uv]
upgrade-package = ["jax-ai-stack"]