-
Notifications
You must be signed in to change notification settings - Fork 3
/
__init__.py
35 lines (29 loc) · 1005 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
__author__ = 'Matteo Balasso <[email protected]>, Daniele Giunchi <[email protected]>'
__copyright__= 'Copyright (C) 2012 SCS srl'
__credits__ = ['Matteo Balasso','Daniele Giunchi']
__classifiers__ = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: BSD'
'Operating System :: OS Independent',
"Framework :: Flask",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
]
import os
here = os.path.dirname(__file__)
__version__ = open(os.path.join(here, 'version.txt'),'r').read()
__description__ = open(os.path.join(here, 'README.txt'),'r').read()
del os, here
__docformat__ = 'restructuredtext en'
__doc__ = """
:author: %s
:organization: SCS s.r.l.
:address: Via Parini 1, 40033 Casalecchio di Reno, Italy
:contact: http://www.scsitaly.com
:version: %s
:date: 2012-01
:copyright: %s
:abstract: %s
""" % (__author__, __version__,__copyright__,__description__)
from wfmng import *