-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
95 lines (82 loc) · 1.95 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
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
95
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "jaxonnxruntime"
description = "Jaxonnxruntime: JAX based ONNX Runtime."
keywords = []
authors = [
{name = "Jaxonnxruntime team", email = "[email protected]"},
]
dependencies = [
"numpy",
"jax",
"jaxlib",
"absl-py",
"jaxtyping",
"chex",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = ["version", "readme"]
[project.optional-dependencies]
all = [
"onnx==1.12.0", # Please keep this as the last line since onnx request old protobuf lib.
]
testing = [
"mypy",
"pytest",
"pytest-cov",
"pytest-custom_exit_code",
"pytest-xdist",
]
[project.urls]
homepage = "https://github.com/google/jaxonnxruntime"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "jaxonnxruntime.version.__version__"}
[tool.setuptools.packages.find]
include = ["jaxonnxruntime*"]
[tool.setuptools.package-data]
jaxonnxruntime = ["*py.typed"]
[tool.yapf]
based_on_style = "yapf"
[tool.pytype]
[tool.mypy]
show_error_codes = true
no_implicit_optional = true
disable_error_code = "attr-defined"
[[tool.mypy.overrides]]
module = [
"tensorflow.*",
"tensorboard.*",
"absl.*",
"jax.*",
"rich.*",
"jaxlib.cuda.*",
"jaxlib.cpu.*",
"msgpack",
"numpy.*",
"optax.*",
"orbax.*",
"opt_einsum.*",
"scipy.*",
"jaxlib.mlir.*",
"yaml",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
filterwarnings = [
# By default error out on any warnings.
]
[tool.coverage.report]
exclude_lines = [
"@abc.abstractmethod",
"raise NotImplementedError",
]