-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (87 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
94 lines (87 loc) · 1.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "gpax"
authors = [
{"name" = "Maxim Ziatdinov", "email" = "maxim.ziatdinov@ai4microcopy.com"}
]
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.6.2",
"jaxlib>=0.6.2",
"numpyro>=0.18.0",
"dm-haiku>=0.0.14",
"jaxopt>=0.8.5",
"flax>=0.10.7"
]
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
)/
'''
[tool.flit.module]
name = "gpax"
[tool.flit.sdist]
exclude = [
"docs/",
"examples/",
"tests/",
"images/",
"*.ipynb",
"*.png",
"*.gif",
"*.jpg",
"*.sh",
"*.yml",
"*.txt",
"*.rst",
"*.bat",
"Makefile",
".flake8",
".DS_Store",
".pytest_cache/",
".vscode/",
"__pycache__/",
"*.pyc",
"*.code-workspace"
]
include = [
"gpax/",
"LICENSE",
"pyproject.toml",
"README.md"
]