Metadata-Version: 2.4
Name: fiduswriter-ojs
Version: 4.1.0
Summary: A Fidus Writer plugin to connect to OJS.
Author-email: Johannes Wilm <johannes@fiduswriter.org>
License-Expression: AGPL-3.0-or-later
Project-URL: homepage, https://www.fiduswriter.org/ojs-integration/
Project-URL: repository, https://github.com/fiduswriter/fiduswriter-ojs/
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 6.0
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tenacity==8.2.2
Dynamic: license-file

FidusWriter-OJS
=====

FidusWriter-OJS is a Fidus writer plugin to connect a Fidus Writer instance
with Open Journal Systems (OJS).
This plugin has to be combined with the `OJS-FidusWriter plugin <https://github.com/fiduswriter/ojs-fiduswriter>`_ for OJS.


NOTE
----

These instructions are for developers only. If you are running Fidus Writer as a snap, see [these instructions](https://github.com/fiduswriter/fiduswriter/wiki/Installation-and-configuration-on-Ubuntu-using-snap#activate-plugins) on how to activate plugins.

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

1. Within a Python virtual environment, install Fidus Writer with the plugin like this:

    pip install fiduswriter[ojs]

2. Create a Fidus Writer project in the current folder by running:

    fiduswriter startproject

3. There will now be a configuration.py file in the current folder. Add "ojs" to your INSTALLED_APPS setting in the configuration.py file
   like this::

    INSTALLED_APPS += (
        ...
        'ojs',
    )


4. Run Fidus Writer::

    fiduswriter runserver

5. Following the install instructions of the `OJS-FidusWriter plugin <https://github.com/fiduswriter/ojs-fiduswriter>`_ to connect
   the two plugins with each other.


Credits
-----------

This plugin has been developed by the `Opening Scholarly Communications in the Social Sciences (OSCOSS) <http://www.gesis.org/?id=10714>`_ project, financed by the German Research Foundation (DFG) and executed by the University of Bonn and GESIS – Leibniz Institute for the Social Sciences.

Original Developers: `Fakhri Momeni <https://github.com/momenifi>`_ and `Johannes Wilm <https://github.com/johanneswilm>`_
