-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41ebbbe
commit 841efdc
Showing
6 changed files
with
84 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,3 +41,4 @@ media/* | |
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
.PHONY: test pep8 clean install build publish tree reenv | ||
|
||
test: pep8 | ||
py.test --cov=flask_googlemaps -l --tb=short --maxfail=1 tests/ | ||
|
||
pep8: | ||
@flake8 flask_googlemaps --ignore=F403 | ||
|
||
clean: | ||
@find ./ -name '*.pyc' -exec rm -f {} \; | ||
@find ./ -name 'Thumbs.db' -exec rm -f {} \; | ||
@find ./ -name '*~' -exec rm -f {} \; | ||
@rm -rf dist/ | ||
@rm -rf *.egg | ||
@rm -rf *.egg-info | ||
|
||
install: | ||
@pip install flit pypandoc pygments | ||
@flit install -s | ||
|
||
build: | ||
@flit build | ||
|
||
publish: | ||
@flit publish | ||
|
||
tree: | ||
@tree -L 1 -a -I __pycache__ --dirsfirst --noreport | ||
|
||
reenv: | ||
@rm -rf venv | ||
@python3.6 -m venv venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[metadata] | ||
module = flask_googlemaps | ||
dist-name = Flask-GoogleMaps | ||
author = Bruno Rocha | ||
author-email = [email protected] | ||
maintainer = rochacbruno | ||
maintainer-email = [email protected] | ||
home-page = https://github.com/rochacbruno/Flask-GoogleMaps/ | ||
requires = flask | ||
description-file = README.md | ||
classifiers = Programming Language :: Python | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3.6 | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: MIT License | ||
Framework :: Flask | ||
Topic :: Internet :: WWW/HTTP :: Dynamic Content | ||
Topic :: Software Development :: Libraries :: Python Modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters