~joetalbott/uci-engine/user_auth

740.3.1 by Celso Providelo
Adding validator module.
1
#!/usr/bin/env python
2
# Ubuntu CI Engine
3
# Copyright 2014 Canonical Ltd.
4
5
# This program is free software: you can redistribute it and/or modify it
6
# under the terms of the GNU Affero General Public License version 3, as
7
# published by the Free Software Foundation.
8
9
# This program is distributed in the hope that it will be useful, but
10
# WITHOUT ANY WARRANTY; without even the implied warranties of
11
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
12
# PURPOSE.  See the GNU Affero General Public License for more details.
13
14
# You should have received a copy of the GNU Affero General Public License
15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17
import os
18
import sys
19
20
HERE = os.path.abspath(os.path.dirname(__file__))
21
# get ci_utils.setuptools on the path
22
sys.path.append(os.path.join(HERE, '../ci-utils'))
23
from ci_utils.setup_helper import setup
24
25
requires = [
26
    'amqplib==1.0.0',
782.7.15 by Vincent Ladeuil
Bump ucitests to 0.1.5 for parametrized tests.
27
    'ucitests==0.1.5',
740.3.1 by Celso Providelo
Adding validator module.
28
    'mock==1.0.1',
29
]
30
31
setup('validator', 'validator.tests', requires)