-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
50 lines (45 loc) · 1.02 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
[metadata]
name = corregraphe
version = 0.1.1
author = "Théo Delecour"
author_email = "[email protected]"
description = Correlation graphs with NetworkX
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
license = MIT
url = https://github.com/theodcr/corregraphe
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
zip_safe = False
include_package_data = True
python_requires = >= 3.6
install_requires =
hvplot
networkx
pandas
scipy
packages = find:
test_suite = tests
[options.extras_require]
dev =
black
flake8
isort
mypy
[mypy]
ignore_missing_imports = True
warn_unused_configs = True
disallow_untyped_defs = True
[isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
[flake8]
max-line-length = 88
doctests = True
exclude = .git, *.egg-info, __pycache__, docs, build, dist, .mypy_cache, .venv