-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
65 lines (57 loc) · 1.34 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 = python_resolver
version = 0.0.2.post1
description = Python dependency resolver
long_description = file: README.md
long_description_content_type = text/markdown
author = Filipe Laíns
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
project_urls =
homepage = https://github.com/FFY00/python-resolver
[options]
packages = find:
install_requires =
importlib-metadata>=3.2.0
mousebender~=2.0.0
resolvelib~=0.7.0
python_requires = >=3.7
[options.entry_points]
console_scripts =
python-resolver = resolver.__main__:entrypoint
mindeps = resolver.mindeps.__main__:entrypoint
[options.extras_require]
mindeps =
build~=0.5.1
pep517
test =
pytest>=4
pytest-cov>=2
[flake8]
max-line-length = 127
max-complexity = 10
extend-ignore = E203
[isort]
line_length = 127
lines_between_types = 1
lines_after_imports = 2
known_first_party = resolver
known_third_party = build
[mypy]
ignore_missing_imports = True
strict = True
[coverage:paths]
source =
src
*/site-packages
*\site-packages
[coverage:html]
show_contexts = true