~thomir-deactivatedaccount/tanuki-continuous-deployer/trunk-enable-tcp

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Thomi Richards
  • Date: 2015-07-17 05:13:44 UTC
  • Revision ID: thomi.richards@canonical.com-20150717051344-n3bxuh8sq0eqjnca
Import of adt-continuous-deployer codebase.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python3
 
2
#
 
3
# Copyright (C) 2015 Canonical
 
4
#
 
5
# This program is free software: you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation, either version 3 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
#
 
18
 
 
19
import sys
 
20
assert sys.version_info >= (3,), 'Python 3 is required'
 
21
 
 
22
from setuptools import (
 
23
    find_packages,
 
24
    setup,
 
25
)
 
26
 
 
27
VERSION = '1.0.0'
 
28
 
 
29
setup(
 
30
    name='adt-continuous-integration',
 
31
    version=VERSION,
 
32
    description=('CI deployment helpers '),
 
33
    author='Canonical CI Engineering Team',
 
34
    author_email='canonical-ci-engineering@lists.launchpad.net',
 
35
    url='https://launchpad.net/adt-continuous-integration',
 
36
    license='GPLv3',
 
37
    packages=find_packages(),
 
38
    test_suite='ci_automation.tests',
 
39
    scripts=['cd.py', 'mojo.py', 'reaper.py']
 
40
)