Skip to content

Commit

Permalink
Invenio-OAuthClient 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 committed Aug 3, 2015
1 parent 7adadb5 commit 1b3d57b
Show file tree
Hide file tree
Showing 7 changed files with 97 additions and 21 deletions.
13 changes: 12 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,15 @@ Authors

Invenio module that provides OAuth web authorization support.

- CERN <[email protected]>
- Eirini Psallida <[email protected]>
- Esteban J. G. Gabancho <[email protected]>
- Georgios Papoutsakis <[email protected]>
- Jan Aage Lavik <[email protected]>
- Javier Martin Montull <[email protected]>
- Jiri Kuncar <[email protected]>
- Lars Holm Nielsen <[email protected]>
- Leonardo Rossi <[email protected]>
- Marco Neumann <[email protected]>
- Nicolas Harraudeau <[email protected]>
- Pamfilos Fokianos <[email protected]>
- Tibor Simko <[email protected]>
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-08-04)

- First release
- Initial public release.
36 changes: 36 additions & 0 deletions RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
============================
Invenio-OAuthClient v0.1.0
============================

Invenio-OAuthClient v0.1.0 was released on August 4, 2015.

About
-----

Invenio module that provides OAuth web authorization support.

*This is an experimental development preview release.*

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

- Initial public release.

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

$ pip install invenio-oauthclient==0.1.0

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

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

Happy hacking and thanks for flying Invenio-OAuthClient.

| Invenio Development Team
| Email: [email protected]
| IRC: #invenio on irc.freenode.net
| Twitter: http://twitter.com/inveniosoftware
| GitHub: https://github.com/inveniosoftware/invenio-oauthclient
| URL: http://invenio-software.org
28 changes: 14 additions & 14 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,50 +30,50 @@
.. automodule:: invenio_oauthclient

Contents
--------
========

.. toctree::
:maxdepth: 2

.. _module_oauthclient_conf:

Configuration
-------------
=============

.. automodule:: invenio_oauthclient.config

Contrib
-------
=======

GitHub
^^^^^^
------
.. automodule:: invenio_oauthclient.contrib.github

ORCID
^^^^^
-----
.. automodule:: invenio_oauthclient.contrib.orcid

CERN
^^^^
----
.. automodule:: invenio_oauthclient.contrib.cern

API
----
===

Handlers
^^^^^^^^
--------

.. automodule:: invenio_oauthclient.handlers
:members:

Models
^^^^^^
------

.. automodule:: invenio_oauthclient.models
:members:

Views
^^^^^
-----

.. automodule:: invenio_oauthclient.views.client
:members:
Expand All @@ -82,25 +82,25 @@ Views
:members:

Forms
^^^^^
-----

.. automodule:: invenio_oauthclient.forms
:members:

Utils
^^^^^
-----

.. automodule:: invenio_oauthclient.utils
:members:

Registries
^^^^^^^^^^
----------

.. automodule:: invenio_oauthclient.client
:members:

Errors
^^^^^^
------

.. automodule:: invenio_oauthclient.errors
:members:
Expand Down
2 changes: 1 addition & 1 deletion invenio_oauthclient/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
and parsed by ``setup.py``.
"""

__version__ = "0.1.0.dev20150000"
__version__ = "0.1.0"
29 changes: 29 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
class PyTest(TestCommand):
"""PyTest Test."""

user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')]

def initialize_options(self):
"""Init pytest."""
Expand Down Expand Up @@ -114,7 +114,7 @@ def run_tests(self):
'Sphinx>=1.3',
'sphinx_rtd_theme>=0.1.7'
],
"github": [
'github': [
'github3.py>=0.9',
],
'tests': test_requirements
Expand All @@ -127,7 +127,7 @@ def run_tests(self):
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2',
# 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3',
Expand Down

0 comments on commit 1b3d57b

Please sign in to comment.