FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
amadeus-python/Makefile at master · amadeus4dev/amadeus-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Jul 17, 2026. It is now read-only.
amadeus4dev
/
amadeus-python
Public archive
Notifications
You must be signed in to change notification settings
Fork
84
Star
263
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
amadeus-python
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (29 loc) · 657 Bytes
Breadcrumbs
amadeus-python
/
Makefile
Copy path
File metadata and controls
39 lines (29 loc) · 657 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
36
37
38
39
SOURCES
=amadeus specs setup.py
DOC_SOURCES
=amadeus docs README.rst
test
:
mamba --format=documentation --enable-coverage
coverage
:
coverage html
open htmlcov/index.html
watch
:
make run
make coverage
fswatch -o
${SOURCES}
|
xargs -n1 -I{} make run
run
:
make lint
make
test
coverage html
lint
:
flake8
$(
SOURCES
)
--exit-zero
docs
:
rm -rf _docs
sphinx-build -b html docs _docs
clean
:
rm -rf _docs build dist
build
:
python setup.py sdist bdist_wheel
watchdocs
:
make docs
open _docs/index.html
fswatch -o
${DOC_SOURCES}
|
xargs -n1 -I{} make docs
.PHONY
: test coverage watch run lint docs clean build
Back
|
FazBrowse Home
|
New Git URL