forked from sarugaku/resolvelib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
69 lines (64 loc) · 1.16 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
[metadata]
name = resolvelib
version = attr: resolvelib.__version__
description = Resolve abstract dependencies into concrete ones
url = https://github.com/sarugaku/resolvelib
author = Tzu-ping Chung
author_email = [email protected]
long_description = file: README.rst
long_description_content_type = text/x-rst
license = ISC License
keywords =
dependency
resolution
classifier =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: ISC License (ISCL)
Operating System :: OS Independent
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
[options]
package_dir =
= src
packages = find:
include_package_data = true
zip_safe = false
[options.packages.find]
where = src
[options.extras_require]
examples =
html5lib
packaging
pygraphviz
requests
lint =
black
flake8
mypy
isort
types-requests
test =
commentjson
packaging
pytest
release =
build
towncrier
twine
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 88
select = C,E,F,W,B
ignore = E203, W503, F401
exclude =
.git,
.venv,
.venvs,
.nox,
__pycache__,
build,
dist,
*.pyi