Skip to content

Commit

Permalink
Invenio-Records v0.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Kuncar <[email protected]>
  • Loading branch information
jirikuncar authored and tiborsimko committed Jul 3, 2015
1 parent 9ef2e29 commit f98cd0b
Show file tree
Hide file tree
Showing 7 changed files with 96 additions and 18 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
Changes
=======

Version 0.1.0 (release TBD)
Version 0.1.0 (release 2015-07-03)

- First release
- Initial public release.
42 changes: 42 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# -*- coding: utf-8 -*-
#
# 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.

include *.py
include *.rst
include *.txt
include LICENSE
include pytest.ini
include tox.ini
recursive-include docs *.py
recursive-include docs *.rst
recursive-include docs Makefile
recursive-include invenio_records *.cfg
recursive-include invenio_records *.css
recursive-include invenio_records *.html
recursive-include invenio_records *.js
recursive-include invenio_records *.py
recursive-include misc *.py
recursive-include misc *.rst
recursive-include tests *.cfg
recursive-include tests *.py
15 changes: 7 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
waive the privileges and immunities granted to it by virtue of its status
as an Intergovernmental Organization or submit itself to any jurisdiction.

======================================
Invenio Records
======================================
=================
Invenio-Records
=================

.. image:: https://img.shields.io/travis/inveniosoftware/invenio-records.svg
:target: https://travis-ci.org/inveniosoftware/invenio-records
Expand All @@ -41,13 +41,12 @@ Invenio Records
:target: https://github.com/inveniosoftware/invenio-records/blob/master/LICENSE


Invenio Record API.
Invenio-Records is a metadata storage module.

* Free software: GPLv2 license
* Documentation: https://invenio-records.readthedocs.org.
*This is an experimental development preview release.*

Features
========

- TODO
- TODO
- Metadata storage.
- JSON Patch updates.
36 changes: 36 additions & 0 deletions RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
====================================
Invenio-Records v0.1.0 is released
====================================

Invenio-Records v0.1.0 was released on July 3, 2015.

About
-----

Invenio-Records is a metadata storage module.

*This is an experimental development preview release.*

What's new
----------

- Initial public release.

Installation
------------

$ pip install invenio-records

Documentation
-------------

http://invenio-records.readthedocs.org/en/v0.1.0

Happy hacking and thanks for flying Invenio-Records.

| Invenio Development Team
| Email: [email protected]
| IRC: #invenio on irc.freenode.net
| Twitter: http://twitter.com/inveniosoftware
| GitHub: https://github.com/inveniosoftware/invenio-records
| URL: http://invenio-software.org
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
master_doc = 'index'

# General information about the project.
project = u'Invenio Records'
project = u'Invenio-Records'
copyright = u'2015, CERN'
author = u'CERN'

Expand Down Expand Up @@ -301,7 +301,7 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'invenio-records', u'Invenio Records Documentation',
(master_doc, 'invenio-records', u'Invenio-Records Documentation',
author, 'invenio-records', 'Invenio Record API.',
'Miscellaneous'),
]
Expand Down
4 changes: 2 additions & 2 deletions invenio_records/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
# waive the privileges and immunities granted to it by virtue of its status
# as an Intergovernmental Organization or submit itself to any jurisdiction.

"""Version information for Invenio Records.
"""Version information for Invenio-Records.
This file is imported by ``invenio_records.__init__``,
and parsed by ``setup.py``.
"""

__version__ = "0.1.0.dev20150000"
__version__ = "0.1.0"
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# waive the privileges and immunities granted to it by virtue of its status
# as an Intergovernmental Organization or submit itself to any jurisdiction.

"""Invenio Record API."""
"""Invenio-Records is a metadata storage module."""

import os
import sys
Expand All @@ -38,7 +38,7 @@
'six>=1.7.2',
'jsonpatch>=1.11',
# FIXME 'Invenio>2.1',
'dojson>=0.1.0.dev20150610',
'dojson>=0.1.0',
]

test_requirements = [
Expand Down Expand Up @@ -89,7 +89,7 @@ def run_tests(self):
version = g['__version__']

setup(
name='Invenio Records',
name='invenio-records',
version=version,
description=__doc__,
long_description=readme + '\n\n' + history,
Expand Down Expand Up @@ -119,13 +119,14 @@ def run_tests(self):
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
'Topic :: Software Development :: Libraries :: Python Modules',
"Programming Language :: Python :: 2",
# 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.3',
# 'Programming Language :: Python :: 3.4',
'Development Status :: 1 - Planning',
],
tests_require=test_requirements,
cmdclass={'test': PyTest},
Expand Down

0 comments on commit f98cd0b

Please sign in to comment.