-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (60 loc) · 1.42 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
[build-system]
requires = [ "setuptools>=61.0" ]
build-backend = "setuptools.build_meta"
[project]
name = "infer-client"
version = "0.1.0"
description = "Abstraction for AI Inference Client"
readme = "README.md"
keywords = [ "infer-client", "onnxruntime", "onnxruntime-gpu", "tritonclient" ]
authors = [
{ name = "Dao Quang Duy", email = "[email protected]" },
]
maintainers = [
{ name = "Rabiloo Developers", email = "[email protected]" },
]
license = {text = "The MIT License"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
]
dependencies = [
"numpy"
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"flake8-pyproject",
"pytest",
"typing_extensions"
]
onnxruntime = [
"onnxruntime"
]
onnxruntime-gpu = [
"onnxruntime-gpu"
]
tritonclient = [
"tritonclient[grpc]"
]
[project.urls]
"Homepage" = "https://github.com/rabiloo/python-infer-client"
"Repository" = "https://github.com/rabiloo/python-infer-client"
"Bug Tracker" = "https://github.com/rabiloo/python-infer-client/issues"
[tool.flake8]
count = true
max-complexity = 10
max-line-length = 120
statistics = true
ignore = ["W503"]
[tool.black]
target-version = ["py310"]
line-length = 120
[tool.isort]
profile = "black"
lines_between_types = 1
line_length = 120