davemds pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=18b5efdb387a608e97d35e8baa846099e640eb57
commit 18b5efdb387a608e97d35e8baa846099e640eb57 Author: davemds <d...@gurumeditation.it> Date: Sat Mar 1 22:03:44 2014 +0100 Python-EFL: updated authors Also added a simple&stupid Makefile for lazy devs. --- AUTHORS | 2 +- Makefile | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ setup.py | 4 ++-- 3 files changed, 54 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 9f6b72d..4b63502 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,6 +1,6 @@ Gustavo Sverzut Barbieri <barbi...@gmail.com> Ulisses Furquim <uliss...@gmail.com> -Davide 'DaveMDS' Andreoli <d...@gurumeditation.it> +Davide Andreoli <d...@gurumeditation.it> Fabiano Fidêncio <fiden...@profusion.mobi> Tiago Falcão <ti...@profusion.mobi> Simon Busch <morp...@gravedo.de> diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0d50c89 --- /dev/null +++ b/Makefile @@ -0,0 +1,51 @@ +# +# A simple and stupid Makefile for python-efl. +# +# This is mainly targeted at lazy devlopers (like me) that +# want to type less or do not want to learn the python +# setup syntax. +# +# Usage: +# +# make <cmd> to build using the default python interpreter +# make <cmd> PY=pythonX to build using the specified python interpreter +# + + +PY = python + + +.PHONY: build +build: + $(PY) setup.py build + + +.PHONY: install +install: + $(PY) setup.py install + + +.PHONY: doc +doc: + $(PY) setup.py build build_doc + + +.PHONY: tests +tests: + $(PY) tests/00_run_all_tests.py + + +.PHONY: clean +clean: + $(PY) setup.py clean --all + + +.PHONY: maintaner-clean +maintaner-clean: + $(PY) setup.py clean --all clean_generated_files + +.PHONY: dist +dist: + $(PY) setup.py sdist --formats=gztar,bztar + + diff --git a/setup.py b/setup.py index 91254cd..5059a5b 100755 --- a/setup.py +++ b/setup.py @@ -363,9 +363,9 @@ setup( fullname = "Python bindings for Enlightenment Foundation Libraries", description = "Python bindings for Enlightenment Foundation Libraries", version = "1.8.99", - author = "Gustavo Sverzut Barbieri, Simon Busch, Boris 'billiob' Faure, Davide 'davemds' Andreoli, Fabiano Fidêncio, Bruno Dilly, Tiago Falcão, Joost Albers, Kai Huuhko, Ulisses Furquim", + author = "Gustavo Sverzut Barbieri, Simon Busch, Boris 'billiob' Faure, Davide Andreoli, Fabiano Fidêncio, Bruno Dilly, Tiago Falcão, Joost Albers, Kai Huuhko, Ulisses Furquim", author_email = "d...@gurumeditation.it, kai.huu...@gmail.com", - maintainer = "Kai Huuhko, Davide <davemds> Andreoli", + maintainer = "Kai Huuhko, Davide Andreoli", maintainer_email = "kai.huu...@gmail.com, d...@gurumeditation.it", contact = "Enlightenment developer mailing list", contact_email = "enlightenment-devel@lists.sourceforge.net", --