Commit 39cdaf59 authored by Luca Cristaldi's avatar Luca Cristaldi
Browse files

Initial commit

parents
Loading
Loading
Loading
Loading

.drone.yml

0 → 100644
+51 −0
Original line number Diff line number Diff line
clone:
    hg:
        image: plugins/hg

pipeline:
    tox:
        image: ${IMAGE}
        environment:
            - CFLAGS=-O0
            - DB_CACHE=/cache
            - TOX_TESTENV_PASSENV=CFLAGS DB_CACHE
            - POSTGRESQL_URI=postgresql://postgres@postgresql:5432/
        commands:
            - pip install tox
            - tox -e "${TOXENV}-${DATABASE}"
        volumes:
            - cache:/root/.cache

services:
    postgresql:
        image: postgres
        when:
            matrix:
                DATABASE: postgresql

matrix:
    include:
        - IMAGE: python:3.4
          TOXENV: py34
          DATABASE: sqlite
        - IMAGE: python:3.4
          TOXENV: py34
          DATABASE: postgresql
        - IMAGE: python:3.5
          TOXENV: py35
          DATABASE: sqlite
        - IMAGE: python:3.5
          TOXENV: py35
          DATABASE: postgresql
        - IMAGE: python:3.6
          TOXENV: py36
          DATABASE: sqlite
        - IMAGE: python:3.6
          TOXENV: py36
          DATABASE: postgresql
        - IMAGE: python:3.7
          TOXENV: py37
          DATABASE: sqlite
        - IMAGE: python:3.7
          TOXENV: py37
          DATABASE: postgresql

COPYRIGHT

0 → 100644
+14 −0
Original line number Diff line number Diff line
Copyright (C) 2018 Luca Cristaldi

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

INSTALL

0 → 100644
+29 −0
Original line number Diff line number Diff line
Installing mittelab_subscription_include
========================================

Prerequisites
-------------

 * Python 3.4 or later (http://www.python.org/)
 * trytond (http://www.tryton.org/)

Installation
------------

Once you've downloaded and unpacked the mittelab_subscription_include source
release, enter the directory where the archive was unpacked, and run:

    python setup.py install

Note that you may need administrator/root privileges for this step, as
this command will by default attempt to install module to the Python
site-packages directory on your system.

For advanced options, please refer to the easy_install and/or the distutils
documentation:

  http://setuptools.readthedocs.io/en/latest/easy_install.html
  http://docs.python.org/inst/inst.html

To use without installation, extract the archive into ``trytond/modules`` with
the directory name subscription_include.

LICENSE

0 → 100644
+0 −0

File added.

Preview size limit exceeded, changes collapsed.

MANIFEST.in

0 → 100644
+6 −0
Original line number Diff line number Diff line
include INSTALL
include README
include COPYRIGHT
include CHANGELOG
include LICENSE
include doc/*