Example #1
0
from mayan.apps.dependencies.classes import PythonDependency

PythonDependency(module=__name__, name='Whoosh', version_string='==2.7.4')
from mayan.apps.dependencies.classes import PythonDependency

PythonDependency(copyright_text='''
        Copyright 2013 Otto Yiu and other contributors
        http://ottoyiu.com

        Permission is hereby granted, free of charge, to any person obtaining
        a copy of this software and associated documentation files (the
        "Software"), to deal in the Software without restriction, including
        without limitation the rights to use, copy, modify, merge, publish,
        distribute, sublicense, and/or sell copies of the Software, and to
        permit persons to whom the Software is furnished to do so, subject to
        the following conditions:

        The above copyright notice and this permission notice shall be
        included in all copies or substantial portions of the Software.

        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
        LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
        OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
        WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    ''',
                 module=__name__,
                 name='django-cors-headers',
                 version_string='==3.2.1')
PythonDependency(copyright_text='''
        Copyright (c) 2011-2015, Tom Christie All rights reserved.
Example #3
0
from mayan.apps.dependencies.classes import PythonDependency

PythonDependency(copyright_text='''
        copyright (c) 2010 SIMON CHARETTE

        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:

        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.

        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
    ''',
                 module=__name__,
                 name='django-colorful',
                 version_string='==1.3')
Example #4
0
from mayan.apps.dependencies.classes import PythonDependency

PythonDependency(module=__name__,
                 name='pycryptodome',
                 version_string='==3.9.7')
Example #5
0
from mayan.apps.dependencies.classes import (BinaryDependency,
                                             PythonDependency)
from mayan.apps.dependencies.environments import environment_testing

from .literals import DEFAULT_FIREFOX_GECKODRIVER_PATH

BinaryDependency(environment=environment_testing,
                 label='firefox-geckodriver',
                 module=__name__,
                 name='geckodriver',
                 path=DEFAULT_FIREFOX_GECKODRIVER_PATH)
PythonDependency(environment=environment_testing,
                 module=__name__,
                 name='coverage',
                 version_string='==5.1')
PythonDependency(environment=environment_testing,
                 module=__name__,
                 name='coveralls',
                 version_string='==2.0.0')
PythonDependency(environment=environment_testing,
                 module=__name__,
                 name='django-test-migrations',
                 version_string='==0.2.0')
# Mock is set to production so that it is available in the Docker image
# and allows running the test suit in production.
PythonDependency(module=__name__, name='mock', version_string='==4.0.2')
PythonDependency(environment=environment_testing,
                 module=__name__,
                 name='selenium',
                 version_string='==3.141.0')
PythonDependency(environment=environment_testing,
Example #6
0
        you may not use this file except in compliance with the License.
        You may obtain a copy of the License at

           http://www.apache.org/licenses/LICENSE-2.0

        Unless required by applicable law or agreed to in writing, software
        distributed under the License is distributed on an "AS IS" BASIS,
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        See the License for the specific language governing permissions and
        limitations under the License.
    ''',
                 help_text=_('Free Open Source OCR Engine'),
                 label='Tesseract',
                 module=__name__,
                 name='tesseract',
                 path=tesseract.tesseract_binary_path)

PythonDependency(
    copyright_text='''
        PyOCR is released under the GPL v3+.
        Copyright belongs to the authors of each piece of code
        (see the file AUTHORS for the contributors list, and
        git blame to know which lines belong to which author).
    ''',
    help_text=_(
        'PyOCR is a Python library simplifying the use of OCR tools like '
        'Tesseract or Cuneiform.'),
    module=__name__,
    name='pyocr',
    version_string='==0.6')
Example #7
0
from django.utils.translation import ugettext_lazy as _

from mayan.apps.dependencies.classes import (BinaryDependency,
                                             JavaScriptDependency,
                                             PythonDependency)

from .settings import setting_scanimage_path

BinaryDependency(
    label='SANE scanimage',
    help_text=_(
        'Utility provided by the SANE package. Used to control the scanner '
        'and obtained the scanned document image.'),
    module=__name__,
    name='scanimage',
    path=setting_scanimage_path.value)
JavaScriptDependency(module=__name__, name='dropzone', version_string='=5.4.0')
PythonDependency(module=__name__, name='flanker', version_string='==0.9.11')
Example #8
0
from mayan.apps.dependencies.classes import PythonDependency

PythonDependency(module=__name__, name='django-solo', version_string='==1.1.3')
Example #9
0
from mayan.apps.dependencies.classes import PythonDependency

PythonDependency(
    module=__name__, name='graphviz', version_string='==0.13.2'
)
Example #10
0
from mayan.apps.dependencies.classes import PythonDependency

PythonDependency(
    module=__name__, name='fusepy', version_string='==3.0.1'
)
Example #11
0
from mayan.apps.dependencies.classes import PythonDependency

PythonDependency(module=__name__,
                 name='django-mathfilters',
                 version_string='==1.0.0')
Example #12
0
from mayan.apps.dependencies.classes import PythonDependency

PythonDependency(
    module=__name__, name='extract-msg', version_string='==0.23.3'
)
PythonDependency(
    module=__name__, name='pycryptodome', version_string='==3.9.7'
)
Example #13
0
from mayan.apps.dependencies.classes import PythonDependency

PythonDependency(module=__name__,
                 name='django-formtools',
                 version_string='==2.2')
PythonDependency(copyright_text='''
        Copyright (c) James Pacileo and contributors.
        All rights reserved.

        Redistribution and use in source and binary forms, with or without modification,
        are permitted provided that the following conditions are met:

        1. Redistributions of source code must retain the above copyright notice,
        this list of conditions and the following disclaimer.

        2. Redistributions in binary form must reproduce the above copyright
        notice, this list of conditions and the following disclaimer in the
        documentation and/or other materials provided with the distribution.

        3. Neither the name of Django nor the names of its contributors may be used
        to endorse or promote products derived from this software without
        specific prior written permission.

        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
        ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
        WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
        ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
        (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
        LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
        ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Example #14
0
PythonDependency(
    copyright_text='''
        Copyright (c) Django Software Foundation and individual contributors.
        All rights reserved.

        Redistribution and use in source and binary forms, with or without modification,
        are permitted provided that the following conditions are met:

        1. Redistributions of source code must retain the above copyright notice,
        this list of conditions and the following disclaimer.

        2. Redistributions in binary form must reproduce the above copyright
        notice, this list of conditions and the following disclaimer in the
        documentation and/or other materials provided with the distribution.

        3. Neither the name of Django nor the names of its contributors may be used
        to endorse or promote products derived from this software without
        specific prior written permission.

        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
        ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
        WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
        ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
        (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
        LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
        ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
        (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
        SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    ''', module=__name__, name='django', version_string='==1.11.20'
)
Example #15
0
from mayan.apps.dependencies.classes import BinaryDependency, PythonDependency

from .backends.python import pdfinfo_path, pdftoppm_path
from .classes import libreoffice_path

BinaryDependency(label='LibreOffice',
                 module=__name__,
                 name='libreoffice',
                 path=libreoffice_path)
BinaryDependency(
    label='PDF Info',
    help_text=_(
        'Utility from the poppler-utils package used to inspect PDF files.'),
    module=__name__,
    name='pdfinfo',
    path=pdfinfo_path)
BinaryDependency(
    label='PDF to PPM',
    help_text=_('Utility from the popper-utils package used to extract pages '
                'from PDF files into PPM format images.'),
    module=__name__,
    name='pdftoppm',
    path=pdftoppm_path)
PythonDependency(
    copyright_attribute='PIL.__doc__',
    module=__name__,
    name='Pillow',
    version_string='==6.2.2',
)
PythonDependency(module=__name__, name='PyPDF2', version_string='==1.26.0')
Example #16
0
PythonDependency(copyright_text='''
        Copyright (c) 2015 Ask Solem & contributors.  All rights reserved.
        Copyright (c) 2012-2014 GoPivotal, Inc.  All rights reserved.
        Copyright (c) 2009, 2010, 2011, 2012 Ask Solem, and individual contributors.  All rights reserved.

        Celery is licensed under The BSD License (3 Clause, also known as
        the new BSD license).  The license is an OSI approved Open Source
        license and is GPL-compatible(1).

        The license text can also be found here:
        http://www.opensource.org/licenses/BSD-3-Clause

        License
        =======

        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are met:
        * Redistributions of source code must retain the above copyright
        notice, this list of conditions and the following disclaimer.
        * Redistributions in binary form must reproduce the above copyright
        notice, this list of conditions and the following disclaimer in the
        documentation and/or other materials provided with the distribution.
        * Neither the name of Ask Solem, nor the
        names of its contributors may be used to endorse or promote products
        derived from this software without specific prior written permission.

        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
        AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
        THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
        PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Ask Solem OR CONTRIBUTORS
        BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
        CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
        SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
        INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
        CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
        ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
        POSSIBILITY OF SUCH DAMAGE.

        Documentation License
        =====================

        The documentation portion of Celery (the rendered contents of the
        "docs" directory of a software distribution or checkout) is supplied
        under the Creative Commons Attribution-Noncommercial-Share Alike 3.0
        United States License as described by
        http://creativecommons.org/licenses/by-nc-sa/3.0/us/

        Footnotes
        =========
        (1) A GPL-compatible license makes it possible to
        combine Celery with other software that is released
        under the GPL, it does not mean that we're distributing
        Celery under the GPL license.  The BSD license, unlike the GPL,
        let you distribute a modified version without making your
        changes open source.
    ''',
                 module=__name__,
                 name='celery',
                 version_string='==3.1.26.post2')
Example #17
0
PythonDependency(copyright_text='''
        Copyright (c) 2010-2015, Justin Quick
        All rights reserved.

        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are
        met:

            * Redistributions of source code must retain the above copyright
              notice, this list of conditions and the following disclaimer.
            * Redistributions in binary form must reproduce the above
              copyright notice, this list of conditions and the following
              disclaimer in the documentation and/or other materials provided
              with the distribution.
            * Neither the name of the author nor the names of other
              contributors may be used to endorse or promote products derived
              from this software without specific prior written permission.

        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
        "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
        LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
        A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
        OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
        SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
        LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
        DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
        THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
        (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
        OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    ''',
                 module=__name__,
                 name='django-activity-stream',
                 version_string='==0.8.0')
Example #18
0
from mayan.apps.dependencies.classes import PythonDependency

PythonDependency(
    module=__name__, name='gevent', version_string='==20.4.0'
)
PythonDependency(
    module=__name__, name='gunicorn', version_string='==20.0.4'
)
PythonDependency(
    module=__name__, name='whitenoise', version_string='==5.0.1'
)
Example #19
0
PythonDependency(copyright_text='''
        Copyright (c) Django Software Foundation and individual contributors.
        All rights reserved.

        Redistribution and use in source and binary forms, with or without modification,
        are permitted provided that the following conditions are met:

        1. Redistributions of source code must retain the above copyright notice,
        this list of conditions and the following disclaimer.

        2. Redistributions in binary form must reproduce the above copyright
        notice, this list of conditions and the following disclaimer in the
        documentation and/or other materials provided with the distribution.

        3. Neither the name of Django nor the names of its contributors may be used
        to endorse or promote products derived from this software without
        specific prior written permission.

        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
        ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
        WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
        ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
        (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
        LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
        ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
        (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
        SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    ''',
                 module=__name__,
                 name='django',
                 version_string='==1.11.26')
Example #20
0
JavaScriptDependency(label=_('jQuery'),
                     module=__name__,
                     name='jquery',
                     version_string='=3.4.1')
JavaScriptDependency(label=_('JQuery Form'),
                     module=__name__,
                     name='jquery-form',
                     version_string='=4.2.2')
JavaScriptDependency(label=_('jQuery Lazy Load'),
                     module=__name__,
                     name='jquery-lazyload',
                     version_string='=1.9.3')
JavaScriptDependency(label=_('JQuery Match Height'),
                     module=__name__,
                     name='jquery-match-height',
                     version_string='=0.7.2')
JavaScriptDependency(label=_('Select 2'),
                     module=__name__,
                     name='select2',
                     version_string='=4.0.13')
JavaScriptDependency(label=_('Toastr'),
                     module=__name__,
                     name='toastr',
                     version_string='=2.1.4')
JavaScriptDependency(label=_('URI.js'),
                     module=__name__,
                     name='urijs',
                     version_string='=1.19.1')

PythonDependency(module=__name__, name='bleach', version_string='==3.1.5')