-
Notifications
You must be signed in to change notification settings - Fork 258
/
Copy pathsetup.cfg
147 lines (136 loc) · 3.17 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
[metadata]
name = instalooter
version = attr: instalooter.__version__
author = Martin Larralde
author-email = [email protected]
home-page = https://github.com/althonos/instalooter
description = Another API-less Instagram pictures and videos downloader
long-description = file: README.rst
license = GPLv3+
license-file = COPYING
platform = any
keywords = instagram, download, web, web scraping, looter
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Internet
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: OS Independent
[options]
zip_safe = true
include_package_data = true
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.5.1
packages = find:
test_suite = tests
install_requires =
coloredlogs ~=14.0
python-dateutil ~=2.1
docopt ~=0.4
fs ~=2.1
requests ~=2.18
six ~=1.4
tqdm ~=4.19
tenacity ~=6.0
typing ~=3.6 ; python_version < '3.6'
verboselogs ~=1.7
tests_require =
instalooter[test]
[options.entry_points]
console_scripts =
instalooter = instalooter.cli:main
[options.packages.find]
exclude =
tests
tests.utils
[options.extras_require]
# add EXIF metadata to downloaded pictures
metadata =
piexif
Pillow
# all features
all =
%(metadata)s
# test dependencies
test =
contexter ~=0.1
mock ~=2.0 ; python_version < '3.4'
parameterized ~=0.6
green ~=2.12
%(metadata)s
# coverage dependencies
coverage =
coverage
codecov
codacy-coverage
# documentation dependencies
doc =
sphinx ~=1.7
sphinx-bootstrap-theme ~=0.6
semantic-version ~=2.6
# development dependencies
dev =
docutils
Pygments
%(test)s
%(coverage)s
[bdist_wheel]
universal=1
[coverage:report]
exclude_lines =
pragma: no cover
raise AssertionError
raise NotImplementedError
return NotImplemented
if 0:
if __name__ == .__main__.:
except ImportError
if six.PY2:
if six.PY3:
@typing.overload
@abc.abstractmethod
if typing.TYPE_CHECKING:
[coverage:run]
branch=True
[green]
file-pattern = test_*.py
verbose = 2
no-skip-report = true
quiet-stdout = true
run-coverage = true
processes = 1
[pydocstyle]
inherit = false
match-dir = (?!tests)(?!resources)(?!docs)[^\.].*
match = (?!test)(?!setup)[^\._].*\.py
ignore = D200, D203, D213, D406, D407
[flake8]
max-line-length = 99
doctests = True
ignore = D200, D203, D213, D406, D407
exclude =
.git,
.eggs,
__pycache__,
tests/,
docs/,
build/,
dist/,
setup.py
[mypy]
disallow_any_decorated = false
disallow_any_generics = false
disallow_any_unimported = false
disallow_subclassing_any = false
disallow_untyped_calls = false
disallow_untyped_defs = false
ignore_missing_imports = true
warn_unused_ignores = true
warn_return_any = false