FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-gtmetrix/setup.py at master · liuweihere/python-gtmetrix · GitHub
liuweihere
/
python-gtmetrix
Public
forked from
aisayko/python-gtmetrix
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-gtmetrix
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (31 loc) · 1010 Bytes
Breadcrumbs
python-gtmetrix
/
setup.py
Copy path
File metadata and controls
35 lines (31 loc) · 1010 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
"""
python-gtmetrix
-----------------
A Python client library for GTmetrix REST API
"""
from
setuptools
import
setup
,
find_packages
setup
(
name
=
'python-gtmetrix'
,
version
=
'0.2.3'
,
url
=
'https://github.com/aisayko/python-gtmetrix'
,
license
=
'MIT License'
,
author
=
'Alex Isayko'
,
author_email
=
'alex.isayko@gmail.com'
,
description
=
'A Python client library for GTmetrix REST API.'
,
keywords
=
'python gtmetrix performance pagespeed yslow'
,
long_description
=
__doc__
,
packages
=
find_packages
(),
include_package_data
=
True
,
zip_safe
=
False
,
platforms
=
'any'
,
install_requires
=
[
'requests'
],
classifiers
=
[
'Development Status :: 5 - Production/Stable'
,
'Environment :: Web Environment'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: MIT License'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
]
)
Back
|
FazBrowse Home
|
New Git URL