Metadata-Version: 2.0
Name: eulfedora
Version: 1.7.2
Summary: Idiomatic access to digital objects in a Fedora Commons repository
Home-page: https://github.com/emory-libraries/eulfedora
Author: Emory University Libraries
Author-email: libsysdev-l@listserv.cc.emory.edu
License: Apache License, Version 2.0
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: eulxml (>=1.0.1)
Requires-Dist: progressbar2
Requires-Dist: pycrypto
Requires-Dist: pypdf2
Requires-Dist: python-dateutil
Requires-Dist: rdflib (>=3.0)
Requires-Dist: requests (>2.9)
Requires-Dist: requests-toolbelt (>=0.6.0)
Requires-Dist: six
Provides-Extra: dev
Requires-Dist: Django; extra == 'dev'
Requires-Dist: coverage; extra == 'dev'
Requires-Dist: mock; extra == 'dev'
Requires-Dist: nose; extra == 'dev'
Requires-Dist: progressbar2; extra == 'dev'
Requires-Dist: pyPdf; extra == 'dev'
Requires-Dist: sphinx; extra == 'dev'
Requires-Dist: tox; extra == 'dev'
Provides-Extra: django
Requires-Dist: Django; extra == 'django'
Provides-Extra: indexdata_util
Requires-Dist: pypdf2; extra == 'indexdata_util'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'
Requires-Dist: mock; extra == 'test'
Requires-Dist: nose; extra == 'test'
Requires-Dist: progressbar2; extra == 'test'
Requires-Dist: pyPdf; extra == 'test'
Requires-Dist: sphinx; extra == 'test'
Requires-Dist: tox; extra == 'test'

eulfedora
^^^^^^^^^

**package**
  .. image:: https://img.shields.io/pypi/v/eulfedora.svg
    :target: https://pypi.python.org/pypi/eulfedora
    :alt: PyPI

  .. image:: https://img.shields.io/pypi/l/eulfedora.svg
    :alt: License

  .. image:: https://img.shields.io/pypi/dm/eulfedora.svg
    :alt: PyPI downloads

**documentation**
  .. image:: https://readthedocs.org/projects/eulfedora/badge/?version=master
    :target: http://eulfedora.readthedocs.org/en/develop/?badge=master
    :alt: Documentation Status

**code**
  .. image:: https://travis-ci.org/emory-libraries/eulfedora.svg?branch=master
    :target: https://travis-ci.org/emory-libraries/eulfedora
    :alt: travis-ci build

  .. image:: https://coveralls.io/repos/github/emory-libraries/eulfedora/badge.svg?branch=master
    :target: https://coveralls.io/github/emory-libraries/eulfedora?branch=master
    :alt: Code Coverage

  .. image:: https://landscape.io/github/emory-libraries/eulfedora/master/landscape.svg?style=flat
     :target: https://landscape.io/github/emory-libraries/eulfedora/master
     :alt: Code Health

  .. image:: https://codeclimate.com/github/emory-libraries/eulfedora/badges/gpa.svg
    :target: https://codeclimate.com/github/emory-libraries/eulfedora
    :alt: Code Climate

  .. image:: https://requires.io/github/emory-libraries/eulfedora/requirements.svg?branch=develop
    :target: https://requires.io/github/emory-libraries/eulfedora/requirements/?branch=develop
    :alt: Requirements Status


eulfedora is a `Python <http://www.python.org/>`_ module that provides
utilities, API wrappers, and classes for interacting with the
`Fedora-Commons Repository <http://fedora-commons.org/>`_
in a pythonic, object-oriented way, with optional
`Django <https://www.djangoproject.com/>`_ integration.  Current versions
of eulfedora are intended for use with Fedora Commons 3.7.x or 3.8.x, but
will likely work with earlier versions.  If you need support for an earlier
version of Fedora and the latest eulfedora does not work, you may have
success with the 1.0 release.

**eulfedora.api** provides complete access to the Fedora API,
primarily making use of Fedora's
`REST API <https://wiki.duraspace.org/display/FCR30/REST+API>`_.  This
low-level interface is wrapped by **eulfedora.server.Repository** and
**eulfedora.models.DigitalObject**, which provide a more abstract,
object-oriented, and Pythonic way of interacting with a Fedora
Repository or with individual objects and datastreams.

**eulfedora.indexdata** provides a webservice that returns data for
fedora objects in JSON form, which can be used in conjunction with a
service for updating an index, such as `eulindexer`.

When used with `Django <https://www.djangoproject.com/>`_,
**eulfedora** can pull the Repository connection configuration from
Django settings, and provides a custom management command for loading
simple content models and fixture objects to the configured
repository.


Dependencies
------------

**eulfedora** currently depends on
`eulxml <https://github.com/emory-libraries/eulxml>`_,
`rdflib <http://www.rdflib.net/>`_,
`python-dateutil <http://labix.org/python-dateutil>`_,
`pycrypto <https://www.dlitz.net/software/pycrypto/>`_,
`soaplib <http://pypi.python.org/pypi/soaplib/0.8.1>`_.

**eulfedora** can be used without
`Django <https://www.djangoproject.com/>`_, but additional
functionality is available when used with Django.


Contact Information
-------------------

**eulfedora** was created by the Digital Programs and Systems Software
Team of `Emory University Libraries <http://web.library.emory.edu/>`_.

libsysdev-l@listserv.cc.emory.edu


License
-------
**eulfedora** is distributed under the Apache 2.0 License.


Development History
-------------------

For instructions on how to see and interact with the full development
history of **eulfedora**, see
`eulcore-history <https://github.com/emory-libraries/eulcore-history>`_.


Developer Notes
---------------

To install dependencies for your local check out of the code, run ``pip install``
in the ``eulfedora`` directory (the use of `virtualenv`_ is recommended)::

    pip install -e .

.. _virtualenv: http://www.virtualenv.org/en/latest/

If you want to run unit tests or build sphinx documentation, you will also
need to install development dependencies::

    pip install -e . "eulfedora[dev]"

Running the unit tests requires a Fedora Commons repository instance.  Before
running tests, you will need to copy ``test/localsettings.py.dist`` to
``test/localsettings.py`` and edit the configuration for your test repository.

To run the tests, you should set an environment variable of
**DJANGO_SETTINGS_MODULE** equal to ``testsettings.test`` or prefix
the nosetests command with ``env DJANGO_SETTINGS_MODULE=testsettings.test``.

To run all unit tests::

    nosetests test # for normal development
    nosetests test --with-coverage --cover-package=eulfedora --cover-xml --with-xunit   # for continuous integration

To run unit tests for a specific module or class, use syntax like this::

    nosetests test.test_fedora.test_api
    nosetests test.test_fedora:TestDigitalObject

To generate sphinx documentation::

    cd doc
    make html

To upload a tagged release to `PyPI <https://pypi.python.org/pypi>`_ with
a `wheel <http://pythonwheels.com/>`_ package::

  python setup.py sdist bdist_wheel upload

To upload new artifacts for previously published versions, use
`twine <https://github.com/pypa/twine>`_.





