-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
144 lines (134 loc) · 2.5 KB
/
setup.cfg
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
[metadata]
name = xinference-client
description = Client for Xinference
author = Qin Xuye
author_email = [email protected]
maintainer = Qin Xuye
maintainer_email = [email protected]
license = Apache License 2.0
url = https://github.com/xorbitsai/inference-client
python_requires = >=3.8
classifier =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Libraries
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
requests
typing-extensions
pydantic
[options.packages.find]
exclude =
*.conftest*
*.tests.*
*.tests
[options.extras_require]
dev =
cython>=0.29
pytest>=3.5.0
pytest-cov>=2.5.0
pytest-timeout>=1.2.0
pytest-forked>=1.0
pytest-asyncio>=0.14.0
pytest-mock>=3.11.1
ipython>=6.5.0
flake8>=3.8.0
black
[coverage:run]
branch = True
relative_files = True
cover_pylib = False
plugins = Cython.Coverage
include =
xinference_client/*
omit =
xinference_client/_version.py
*.pxd
*/tests/*
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
return NotImplemented
[versioneer]
VCS = git
style = pep440
versionfile_source = xinference_client/_version.py
versionfile_build = xinference_client/_version.py
tag_prefix = v
parentdir_prefix = xinference-client-
[flake8]
max-line-length = 100
select =
E9,
E101,
E111,
E117,
E127,
E201,
E202,
E223,
E224,
E225,
E231,
E242,
E251,
E273,
E274,
E275,
E301,
E302,
E303,
E304,
E305,
E401,
E703,
E901,
E999,
F7,
F63,
F82,
F401,
F811,
F821,
F822,
F823,
F841,
W191,
W291,
W292,
W293,
W391,
W601,
W602,
W603,
W604,
W605
exclude =
__init__.py
__pycache__
.git/
.github/
build/
ci/
dist/
docs/
[codespell]
ignore-words-list = hist,rcall,fpr,ser,nd,inout,ot,Ba,ba,asend,hart,coo,splitted,datas,fro
skip = .idea,.git,./build,./docs/build,node_modules,static,generated,*.po,*.ts,*.json,*.c,*.cpp,*.cfg
[isort]
profile = black
[mypy]
ignore_missing_imports=True
follow_imports=skip