update setup

This commit is contained in:
Romain Dorgueil
2016-12-09 05:37:42 +01:00
parent a90b2c5a53
commit 732be3cad9
3 changed files with 9 additions and 9 deletions

View File

@ -1,7 +1,7 @@
# This file has been auto-generated. # This file has been auto-generated.
# All changes will be lost, see Projectfile. # 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 ?= $(shell which python)
PYTHON_BASENAME ?= $(shell basename $(PYTHON)) PYTHON_BASENAME ?= $(shell basename $(PYTHON))

View File

@ -1,14 +1,14 @@
# bonobo (see github.com/python-edgy/project) # bonobo (see github.com/python-edgy/project)
name = 'bonobo' name = 'bonobo'
description = '' description = 'Bonobo'
license = 'Apache License, Version 2.0' license = 'Apache License, Version 2.0'
url = '' url = 'https://github.com/hartym/bonobo'
download_url = '' download_url = 'https://github.com/hartym/bonobo'
author = '' author = 'Romain Dorgueil'
author_email = '' author_email = 'romain@dorgueil.net'
enable_features = { enable_features = {
'make', 'make',

View File

@ -17,7 +17,7 @@ except:
setup( setup(
name = 'bonobo', name = 'bonobo',
description = '', description = 'Bonobo',
license = 'Apache License, Version 2.0', license = 'Apache License, Version 2.0',
install_requires = [], install_requires = [],
version = version, version = version,
@ -33,6 +33,6 @@ setup(
'pytest-cov >=2.4,<2.5', 'pytest-cov >=2.4,<2.5',
'sphinx', 'sphinx',
'sphinx_rtd_theme']}, 'sphinx_rtd_theme']},
url = '', url = 'https://github.com/hartym/bonobo',
download_url = ''.format(version=version), download_url = 'https://github.com/hartym/bonobo'.format(version=version),
) )