Skip to content

Commit

Permalink
Update orquestra and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
UmSenhorQualquer committed May 28, 2019
1 parent 8537343 commit 4b8f557
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions docs/source/getting-started/first-app.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ Create the file **my_module_name/apps/site_crawl.py** and add the next code to i
ORQUESTRA_MENU_ICON = 'browser'
ORQUESTRA_MENU_ORDER = 0
In the **my_module_name/apps/__init__.py** add the next code:

.. code:: python
from .site_crawl import SiteCrawlApp
You have created the most basic application. Access to http://localhost:8000 using your browser and visualize it.

Expand Down
2 changes: 1 addition & 1 deletion orquestra
Submodule orquestra updated 2 files
+3 −45 README.rst
+1 −1 setup.py
2 changes: 1 addition & 1 deletion pyforms_web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__author__ = "Ricardo Ribeiro"
__credits__ = ["Ricardo Ribeiro"]
__license__ = 'GNU GPLv3'
__version__ = "4.1.0"
__version__ = "4.1.3"
__maintainer__ = "Ricardo Ribeiro"
__email__ = "ricardojvr@gmail.com"
__status__ = "Development"
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ def find_files(package_name,directory, pattern):
packages=find_packages(),
package_data={
'pyforms_web':
list( find_files('pyforms_web','web/static/', '*.*') )
list( find_files('pyforms_web', 'web/static/', '*.*') ) + list(find_files('pyforms_web', 'web/templates/', '*.html'))
},
install_requires=[
'django-jfu-pyforms',
'orquestra',
'numpy',
'opencv-python',
'django>2.0',
'opencv-python~=3.4',
'django>2.2',
'simplejson',
'sorl-thumbnail',
'dill',
Expand Down

0 comments on commit 4b8f557

Please sign in to comment.