~ursinha/ubuntu-ci-services-itself/private-only-is-env-variable

« back to all changes in this revision

Viewing changes to test_runner/setup.py

  • Committer: Vincent Ladeuil
  • Date: 2014-01-07 18:07:34 UTC
  • mto: This revision was merged to the branch mainline in revision 87.
  • Revision ID: vila+ci@canonical.com-20140107180734-d2fnalg621m54gcf
Minimal restish implementation for the test runner component.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# Ubuntu CI Engine
 
3
# Copyright 2013 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 setuptools
 
19
 
 
20
 
 
21
# ensure find_packages works if our current directory isn't this project
 
22
here = os.path.abspath(os.path.dirname(__file__))
 
23
os.chdir(here)
 
24
 
 
25
 
 
26
import tstrun
 
27
 
 
28
 
 
29
setuptools.setup(
 
30
    name='test-runner',
 
31
    version=tstrun.__version__,
 
32
    description='Test Runner component of the Ubuntu CI Engine',
 
33
    author='Canonical CI Engineering Team',
 
34
    license='AGPL',
 
35
    packages=setuptools.find_packages(here),
 
36
    test_suite='tstrun.tests',
 
37
    install_requires= [
 
38
        'restish==0.12.1',
 
39
        'amqplib==1.0.0',
 
40
        'WebTest==2.0.10',
 
41
        ],
 
42
)