FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
google-api-python-client/Makefile at v1 · googleapis/google-api-python-client · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
googleapis
/
google-api-python-client
Public
Notifications
You must be signed in to change notification settings
Fork
2.6k
Star
8.9k
Code
Issues
27
Pull requests
35
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
google-api-python-client
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
46 lines (38 loc) · 1.25 KB
Breadcrumbs
google-api-python-client
/
Makefile
Copy path
File metadata and controls
46 lines (38 loc) · 1.25 KB
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
36
37
38
39
40
41
42
43
44
45
46
pep8
:
find googleapiclient samples -name
"
*.py
"
|
xargs pep8 --ignore=E111,E202
APP_ENGINE_PATH
=../google_appengine
test
:
tox
.PHONY
: coverage
coverage
:
coverage erase
find tests -name
"
test_*.py
"
|
xargs --max-args=1 coverage run -a runtests.py
coverage report
coverage html
.PHONY
: docs
docs
:
cd
docs
;
./build
mkdir -p docs/dyn
python describe.py
.PHONY
: wiki
wiki
:
python samples-index.py
>
../google-api-python-client.wiki/SampleApps.wiki
.PHONY
: prerelease
prerelease
:
-rm -rf dist/
-sudo rm -rf dist/
-rm -rf snapshot/
-sudo rm -rf snapshot/
python expandsymlinks.py
cd
snapshot
;
python setup.py clean
cd
snapshot
;
python setup.py sdist --formats=gztar,zip bdist_wheel --universal
cd
snapshot
;
tar czf google-api-python-client-samples-
$(
shell
python setup.py --version)
.tar.gz samples
cd
snapshot
;
zip -r google-api-python-client-samples-
$(
shell
python setup.py --version)
.zip samples
.PHONY
: release
release
: prerelease
@echo
"
This target will upload a new release to PyPi and code.google.com hosting.
"
@echo
"
Are you sure you want to proceed? (yes/no)
"
@read yn
;
if
[ yes
-ne
$(
yn
)
]
;
then
exit
1
;
fi
@echo
"
Here we go...
"
cd
snapshot
;
python setup.py sdist --formats=gztar,zip bdist_wheel --universal
cd
snapshot
;
twine upload dist/
*
Back
|
FazBrowse Home
|
New Git URL