-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
65 lines (59 loc) · 1.12 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
[metadata]
name = gokinjo
version = attr:gokinjo.__version__
author = momijiame
description = k-NN feature extraction utility
long_description = file:README.md
url = https://github.com/momijiame/gokinjo
license = Apache License, Version 2.0
classifier =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
install_requires =
numpy
scikit-learn
zip_safe = False
include_package_data = True
packages = find:
entry_points = file:entry_points.cfg
[options.extras_require]
testing =
pytest
pytest-flake8
pytest-cov
annoy
develop =
pytest
pytest-flake8
pytest-cov
annoy
matplotlib
annoy =
annoy
[options.packages.find]
exclude =
tests
examples
[tool:pytest]
addopts =
-v
--flake8
--cov=gokinjo
--capture=no
[flake8]
exclude =
.git,
.eggs,
__pycache__,
build,
dist
max-complexity = 10
max-line-length = 99
[wheel]
universal = 0