-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
57 lines (50 loc) · 1.23 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
[metadata]
name = pipwhip
version = 0.0.3
description = A tool to automatically upgrade requirements files.
url = https://github.com/ArcLightSlavik
author = ArcLightSlavik
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find:
install_requires =
click>=7.1.2
httpx>=0.16.1
python_requires = >=3.6.1
[options.packages.find]
exclude =
tests*
[options.extras_require]
DEV =
pytest==6.2.4
pytest-cov==2.12.1
pytest-mock==3.6.1
mypy==0.910
pre-commit==2.14.0
# types
types-pkg-resources==0.1.3
[options.entry_points]
console_scripts =
pipwhip = pipwhip.main:pipwhip
[bdist_wheel]
universal = True
[mypy]
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_return_any = True
implicit_reexport = False
strict_equality = True