Metadata-Version: 2.1
Name: perfectextractor-ui
Version: 0.1.5
Summary: A web frontend for perfectextractor
Home-page: https://github.com/time-in-translation/perfectextractor-ui
Author: Ben Bonfil
Author-email: bonfil@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing :: Linguistic
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: django-widget-tweaks
Requires-Dist: perfectextractor

Quick start
-----------

1. Add "perfectextractor_ui" to your INSTALLED_APPS setting like this:

```
    INSTALLED_APPS = [
        ...
        'widget_tweaks',
        'perfectextractor_ui,
    ]
```

2. Include the perfectextractor_ui URLconf in your project urls.py like this:

```
    path('perfectextractor/', include('perfectextractor_ui.urls')),
```

3. Run ``python manage.py migrate`` to create the required models.


