This repository has been archived by the owner on Aug 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
68 lines (63 loc) · 1.66 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
[metadata]
name = pyspeedinsights
version = 0.5.1
author = Will J. Holmes
author_email = will@wjholmes.com
description = Measure your site speed, performance, accessibility and SEO in bulk from the command line with Python and the PageSpeed Insights API.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = google, google-apis, psi-api, page-speed-insights, page-speed-insights-api, pagespeedinsightsapi, python, cli
url = https://github.com/wjh18/pyspeedinsights
project_urls =
Documentation = https://github.com/wjh18/pyspeedinsights/blob/master/README.md
Source = https://github.com/wjh18/pyspeedinsights
Tracker = https://github.com/wjh18/pyspeedinsights/issues
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: End Users/Desktop
Topic :: Internet :: WWW/HTTP :: Site Management
Topic :: Utilities
[options]
package_dir =
= src
packages = find:
python_requires = >=3.9
install_requires =
requests
XlsxWriter
keyring
aiohttp[speedups]
defusedxml
[options.packages.find]
where = src
[options.extras_require]
dev =
pytest
pytest-cov
pytest-datadir
flake8
isort
black
# safety
bandit
pre-commit
mypy
types-requests
[options.entry_points]
console_scripts =
psi = pyspeedinsights.app:main
[flake8]
exclude =
dist,
build,
.tox,
__pycache__,
.venv,
.git
extend-ignore = E203
max-line-length = 88