From 80ecd03ef84c94d61a9493602665901a8f47e454 Mon Sep 17 00:00:00 2001 From: Jiri Kuncar Date: Fri, 31 Jul 2015 13:49:18 +0200 Subject: [PATCH] Invenio-Documents v0.1.0.post1 Signed-off-by: Jiri Kuncar --- RELEASE-NOTES.rst | 6 +++--- invenio_documents/version.py | 2 +- setup.cfg | 29 +++++++++++++++++++++++++++++ setup.py | 2 +- 4 files changed, 34 insertions(+), 5 deletions(-) create mode 100644 setup.cfg diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index 4d0842e..dd5724a 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -19,12 +19,12 @@ What's new Installation ------------ - $ pip install invenio-comments==0.1.0 + $ pip install invenio-documents==0.1.0 Documentation ------------- - http://invenio-comments.readthedocs.org/en/v0.1.0 + http://invenio-documents.readthedocs.org/en/v0.1.0 Happy hacking and thanks for flying Invenio-Documents. @@ -32,5 +32,5 @@ Happy hacking and thanks for flying Invenio-Documents. | Email: info@invenio-software.org | IRC: #invenio on irc.freenode.net | Twitter: http://twitter.com/inveniosoftware -| GitHub: https://github.com/inveniosoftware/invenio-comments +| GitHub: https://github.com/inveniosoftware/invenio-documents | URL: http://invenio-software.org diff --git a/invenio_documents/version.py b/invenio_documents/version.py index cd33dda..6aee932 100644 --- a/invenio_documents/version.py +++ b/invenio_documents/version.py @@ -28,4 +28,4 @@ and parsed by ``setup.py``. """ -__version__ = "0.1.1.dev20150728" +__version__ = "0.1.0.post1" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..fe0c654 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,29 @@ +# This file is part of Invenio. +# Copyright (C) 2015 CERN. +# +# Invenio is free software; you can redistribute it +# and/or modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# Invenio is distributed in the hope that it will be +# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Invenio; if not, write to the +# Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307, USA. +# +# In applying this license, CERN does not +# waive the privileges and immunities granted to it by virtue of its status +# as an Intergovernmental Organization or submit itself to any jurisdiction. + +[wheel] +universal=1 + +[build_sphinx] +source-dir = docs/ +build-dir = docs/_build +all_files = 1 diff --git a/setup.py b/setup.py index 5c30c9c..aeefc03 100644 --- a/setup.py +++ b/setup.py @@ -88,7 +88,7 @@ def run_tests(self): version = g['__version__'] setup( - name='Invenio-Documents', + name='invenio-documents', version=version, description=__doc__, long_description=readme + '\n\n' + history,