-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
66 lines (61 loc) · 1.49 KB
/
setup.cfg
File metadata and controls
66 lines (61 loc) · 1.49 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
[metadata]
name = vectorspace
version = 1.1.0
description = A more opinionated way to do machine learning 🧅
url = https://github.com/exdatic/vectorspace
author = André Kischkel
author_email = andre@exdatic.ai
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
[options]
zip_safe = true
package_dir=
=.
packages=find:
include_package_data = true
python_requires = >=3.8
install_requires =
anyascii
cloudpickle
elasticsearch>=7
lmdb
loguru
numba
numpy>=1.20
orjson
spacy>=3.2.0,<4
zstandard
tests_require =
pytest
pytest-asyncio
[options.package_data]
* = **/*.json
[options.extras_require]
test =
flake8
pytest
[tool:pytest]
testpaths = tests
norecursedirs = tests/test
filterwarnings =
ignore::DeprecationWarning
ignore::RuntimeWarning
ignore::pytest.PytestUnraisableExceptionWarning
[flake8]
max-line-length = 127