forked from eggplants/networkx-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (41 loc) · 805 Bytes
/
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
[metadata]
name = networkx-stubs
version = 0.0.1
description = Typing stubs for NetworkX
long_description = file: README.md
long_description_content_type = text/markdown
# license =
author = eggplants
author_email = [email protected]
url = https://github.com/eggplants/networkx-stubs
classifiers =
Intended Audience :: Developers
Programming Language :: Python
[options]
packages =
networkx-stubs
install_requires =
networkx
include_package_data = True
[options.package_data]
* = **/*.pyi
[options.extras_require]
dev =
black
flake8-black
mypy
flake8
flake8-pyi
setuptools
wheel
[mypy]
python_version = 3.7
show_error_codes = True
pretty = True
# strict = True
[tool:black]
line-length = 88
[tool:isort]
profile = black
[flake8]
max-line-length = 88