-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
59 lines (54 loc) · 1.1 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
53
54
55
56
57
58
59
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "gpax"
authors = [
{"name" = "Maxim Ziatdinov", "email" = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.9"
license = {"file" = "LICENSE"}
description='Gaussian processes in NumPyro and JAX'
classifiers=[
'Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Topic :: Scientific/Engineering'
]
# Core dependencies
dependencies = [
"matplotlib>=3.1.1",
"jax>=0.4.8",
"numpyro>=0.11.0",
"dm-haiku>=0.0.5",
"dunamai==1.19.2",
"jaxopt", # TODO: do we want to require this?
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"flake8",
"jaxlib",
"pytest",
"pytest-cov",
]
[tool.black]
line-length = 127
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs/source/conf.py
)/
'''