From 732be3cad94cb9cb92c32f1631d7482c51889caa Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Fri, 9 Dec 2016 05:37:42 +0100 Subject: [PATCH] update setup --- Makefile | 2 +- Projectfile | 10 +++++----- setup.py | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index b5ba3fa..e64be1d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # This file has been auto-generated. # All changes will be lost, see Projectfile. # -# Updated at 2016-12-09 05:11:13.084703 +# Updated at 2016-12-09 05:37:33.079110 PYTHON ?= $(shell which python) PYTHON_BASENAME ?= $(shell basename $(PYTHON)) diff --git a/Projectfile b/Projectfile index 1b3699e..ce18634 100644 --- a/Projectfile +++ b/Projectfile @@ -1,14 +1,14 @@ # bonobo (see github.com/python-edgy/project) name = 'bonobo' -description = '' +description = 'Bonobo' license = 'Apache License, Version 2.0' -url = '' -download_url = '' +url = 'https://github.com/hartym/bonobo' +download_url = 'https://github.com/hartym/bonobo' -author = '' -author_email = '' +author = 'Romain Dorgueil' +author_email = 'romain@dorgueil.net' enable_features = { 'make', diff --git a/setup.py b/setup.py index 0bce5c8..278cfe2 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ except: setup( name = 'bonobo', - description = '', + description = 'Bonobo', license = 'Apache License, Version 2.0', install_requires = [], version = version, @@ -33,6 +33,6 @@ setup( 'pytest-cov >=2.4,<2.5', 'sphinx', 'sphinx_rtd_theme']}, - url = '', - download_url = ''.format(version=version), + url = 'https://github.com/hartym/bonobo', + download_url = 'https://github.com/hartym/bonobo'.format(version=version), )