From 18b5efdb387a608e97d35e8baa846099e640eb57 Mon Sep 17 00:00:00 2001 From: davemds Date: Sat, 1 Mar 2014 22:03:44 +0100 Subject: [PATCH] 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(-) create mode 100644 Makefile diff --git a/AUTHORS b/AUTHORS index 9f6b72d..4b63502 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,6 +1,6 @@ Gustavo Sverzut Barbieri Ulisses Furquim -Davide 'DaveMDS' Andreoli +Davide Andreoli Fabiano Fidêncio Tiago Falcão Simon Busch 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 to build using the default python interpreter +# make 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 = "dave@gurumeditation.it, kai.huuhko@gmail.com", - maintainer = "Kai Huuhko, Davide Andreoli", + maintainer = "Kai Huuhko, Davide Andreoli", maintainer_email = "kai.huuhko@gmail.com, dave@gurumeditation.it", contact = "Enlightenment developer mailing list", contact_email = "enlightenment-devel@lists.sourceforge.net",