-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,9 @@ Summary: Processes and automations for your Django project | |
Home-page: https://github.com/fsbraun/django-automations | ||
Author: Fabian Braun | ||
Author-email: [email protected] | ||
License: UNKNOWN | ||
Project-URL: Bug Tracker, https://github.com/fsbraun/django-automations/issues | ||
Project-URL: Documentation, https://django-automations.readthedocs.io/en/latest/ | ||
Keywords: django_automations,workflow,automation | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 3.7 | ||
|
@@ -73,12 +71,11 @@ This project is in a early stage. All feedback is welcome! Please mail me at fsb | |
|
||
# Installation | ||
|
||
This project will be available on pypi after the first release. In the meantime, please install the master branch from | ||
git using | ||
Install the package from PyPI: | ||
|
||
pip install https://github.com/fsbraun/django-automations/archive/master.zip | ||
pip install django-automations | ||
|
||
After installation add the `automations` to your installed apps in `settings.py`: | ||
Add `automations` to your installed apps in `settings.py`: | ||
|
||
INSTALLED_APPS = ( | ||
..., | ||
|
@@ -102,7 +99,9 @@ in one place all business processes which in a Django app often are distributed | |
carried out. | ||
|
||
from automations import flow | ||
from automations.flow import this | ||
from automations.flow import Automation | ||
from automations.flow import this | ||
|
||
# "this" can be used in a class definition as a replacement for "self" | ||
|
||
from . import forms | ||
|
@@ -131,4 +130,3 @@ carried out. | |
# Documentation | ||
|
||
See the [documentation on readthedocs.io](https://django-automations.readthedocs.io/). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters