forked from xorbitsai/xorbits
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
228 lines (216 loc) · 4.91 KB
/
setup.cfg
File metadata and controls
228 lines (216 loc) · 4.91 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
[metadata]
name = xorbits
description = Scalable Python data science, in an API compatible & lightning fast way.
author = Qin Xuye
author_email = [email protected]
maintainer = Qin Xuye
maintainer_email = [email protected]
license = Apache License 2.0
url = http://github.com/xorbitsai/xorbits
python_requires = >=3.9
classifier =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
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 =
xoscar>=0.0.8
numpy>=1.14.0
pandas>=1.0.0
scipy>=1.0.0; sys_platform!="win32" or python_version>="3.10"
scipy>=1.0.0,<=1.9.1; sys_platform=="win32" and python_version<"3.10"
scikit-learn>=1.1.3; sys_platform!="win32" or python_version>="3.10"
scikit-learn>=0.20,<=1.1.2; sys_platform=="win32" and python_version<"3.10"
cloudpickle>=2.2.1; python_version>="3.11"
cloudpickle>=1.5.0; python_version<"3.11"
pyyaml>=5.1
psutil>=5.9.0
tornado>=6.0
sqlalchemy>=1.2.0
defusedxml>=0.5.0
tqdm>=4.1.0
uvloop>=0.14.0; sys_platform!="win32"
pyarrow>=5.0.0
fsspec>=2022.7.1,!=2022.8.0
[options.packages.find]
exclude =
*.conftest*
*.tests.*
*.tests
[options.entry_points]
console_scripts =
xorbits-supervisor = xorbits.supervisor:main
xorbits-worker = xorbits.worker:main
[options.extras_require]
dev =
cython>=0.29
ipython>=6.5.0
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
sphinx
pydata-sphinx-theme>=0.3.0
sphinx-intl>=0.9.9
flake8>=3.8.0
xgboost>=1.3.0
lightgbm>=3.3.5
black
matplotlib
datasets
doc =
sphinx
pydata-sphinx-theme>=0.3.0
sphinx-intl>=0.9.9
matplotlib
extra =
pillow>=7.0.0
lz4>=1.0.0
numexpr>=2.6.4
jax =
jax>=0.4.0; sys.platform != "win32"
jaxlib>=0.4.0; sys.platform != "win32"
kubernetes =
kubernetes>=10.0.0
ray =
ray>=1.8.0
vineyard =
vineyard>=0.3; sys.platform != "win32"
aws =
s3fs
azure =
adlfs
datasets =
datasets
[coverage:run]
branch = True
relative_files = True
cover_pylib = False
plugins = Cython.Coverage
include =
xorbits/*
omit =
xorbits/_version.py
*.pxd
*/tests/*
xorbits/deploy/slurm/slurm.py
xorbits/deploy/kubernetes/core.py
xorbits/deploy/kubernetes/supervisor.py
xorbits/deploy/kubernetes/worker.py
xorbits/_mars/compat.py
xorbits/_mars/conftest.py
xorbits/_mars/deploy/kubedl/*
xorbits/_mars/deploy/kubernetes/*
xorbits/_mars/deploy/yarn/*
xorbits/_mars/lib/aio/_runners.py
xorbits/_mars/lib/aio/lru.py
xorbits/_mars/lib/functools32/*
xorbits/_mars/lib/bloom_filter.py
xorbits/_mars/lib/futures/*
xorbits/_mars/lib/six.py
xorbits/_mars/lib/nvutils.py
xorbits/_mars/lib/ordered_set.py
xorbits/_mars/lib/uhashring/*
xorbits/_mars/learn/contrib/xgboost/tracker.py
xorbits/_mars/learn/cluster/_k_means_fast.*
xorbits/_mars/learn/cluster/_k_means_elkan.pyx
xorbits/_mars/learn/cluster/_k_means_lloyd.pyx
xorbits/_mars/learn/proxima/*
xorbits/_mars/learn/utils/_cython_blas.*
xorbits/_mars/tensor/einsum/einsumfunc.py
xorbits/_mars/storage/cuda.py
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
return NotImplemented
[versioneer]
VCS = git
style = pep440
versionfile_source = xorbits/_version.py
versionfile_build = xorbits/_version.py
tag_prefix = v
parentdir_prefix = xorbits-
[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/
xorbits/_mars/lib/nvutils.py
xorbits/_mars/lib/uhashring/*
xorbits/_mars/lib/version.py
per-file-ignores =
*/core/adapter.py: F401
[codespell]
ignore-words-list = hist,rcall,fpr,ser,nd,inout,ot,Ba,ba,asend,hart,coo,splitted,datas,fro,ags,rabit,lama,
skip = .idea,.git,./build,./docs/build,xorbits/_mars/lib,node_modules,static,generated,*.po,*.ts,*.json,*.c,*.cpp,*.cfg
[isort]
profile = black
skip_glob = */_version.py,*/versioneer.py,xorbits/_mars/lib,*.pyx,*.pyd,*pxd
[mypy]
ignore_missing_imports=True
follow_imports=skip
exclude = xorbits/_mars