-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.cfg
86 lines (76 loc) · 1.93 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
[metadata]
name = hector_ml
version = 0.1.0.dev0
description = HECTOR component that predicts the existence of weird machines
long_description = file: README.md
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
zip_safe = False
include_package_data = True
package_dir =
=src
packages = find:
python_requires = >=3.6
install_requires =
attrs >=19.3.0
click >=7.1.1,<8
matplotlib >=3.2,<4
more_itertools >=8.4,<9
networkit >=8.0,<9
networkx >=2.4,<3
numpy >=1.18,<2
pydot >=1.4,<2
pytorch-ignite >=0.4.rc,<0.5
scikit-learn >=0.23,<0.24
scikit-optimize >=0.8,<0.9
scipy >=1.4,<2
structure2vec
torch >=1.5,<2
[options.packages.find]
where=src
[options.package_data]
# * = *.txt
[options.extras_require]
tests =
coverage >=5.0.3,<6
hypothesis >=5.6,<6
hypothesis_networkx >=0.2.1,<0.3
pytest >=5.3.5,<6
docs =
sphinx
importlib_metadata; python_version < "3.8"
dev =
pre-commit
tox
[options.entry_points]
console_scripts =
hector = hector_ml.cli:main
[tool:pytest]
addopts = --strict-markers
filterwarnings =
error
ignore:The objective has been evaluated at this point before\.
ignore:WARNING. module 'pandas' not found, some functionality will be restricted
ignore:numpy\.ufunc size changed, may indicate binary incompatibility
ignore:.*is a deprecated alias for the builtin:DeprecationWarning:sklearn.*
ignore:.*is a deprecated alias for the builtin:DeprecationWarning:skopt.*
ignore:.*is a deprecated alias for the builtin:DeprecationWarning:networkx.*
[tool:isort]
profile = black
known_first_party = hector_ml
[flake8]
max-line-length = 88
extend-ignore = E203, W503
max-complexity = 10
[coverage:run]
branch = true
source =
hector_ml
[coverage:paths]
source =
src/
.tox/*/site-packages