~coreygoldberg/uci-tests/ucitests-py3-packaging

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Vincent Ladeuil
  • Date: 2013-11-10 22:13:54 UTC
  • Revision ID: v.ladeuil+lp@free.fr-20131110221354-0rjd4y7s5wolas8i
Initial skeleton for the uci.tests python package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python3
 
2
 
 
3
#
 
4
# Ubuntu Continuous Integration test tools
 
5
# Copyright (C) 2013 Canonical
 
6
#
 
7
# This program is free software: you can redistribute it and/or modify
 
8
# it under the terms of the GNU General Public License as published by
 
9
# the Free Software Foundation, either version 3 of the License, or
 
10
# (at your option) any later version.
 
11
#
 
12
# This program is distributed in the hope that it will be useful,
 
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
 
 
21
 
 
22
from  distutils import core
 
23
 
 
24
from uci import tests
 
25
 
 
26
 
 
27
core.setup(
 
28
    name='uci.tests',
 
29
    version='.'.join(str(c) for c in tests.__version__[0:3]),
 
30
    description='Ubuntu Continuous Integration test tools.',
 
31
    author='Vincent Ladeuil',
 
32
    author_email='vila+ci@canonical.com',
 
33
    url='https://launchpad.net/uci-tests',
 
34
    license='GPLv3',
 
35
    packages=['uci.tests'],
 
36
)