~sylvain-pineau/cdts/bug1214914

« back to all changes in this revision

Viewing changes to checkbox-ng/setup.py

  • Committer: Zygmunt Krynicki
  • Date: 2013-05-17 13:54:25 UTC
  • mto: This revision was merged to the branch mainline in revision 2130.
  • Revision ID: zygmunt.krynicki@canonical.com-20130517135425-cxcenxx5t0qrtbxd
checkbox-ng: add CheckBoxNG sub-project

CheckBoxNG (or lowercase as checkbox-ng, pypi:checkbox-ng) is a clean
implementation of CheckBox on top of PlainBox. It provides a new
executable, 'checkbox' that has some of the same commands that were
previously implemented in the plainbox package.

In particular CheckBoxNG comes with the 'checkbox sru' command
(the same one as in plainbox). Later on this sub-command will be removed
from plainbox.

CheckBoxNG depends on plainbox >= 0.3

Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@canonical.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python3
 
2
# This file is part of Checkbox.
 
3
#
 
4
# Copyright 2013 Canonical Ltd.
 
5
# Written by:
 
6
#   Zygmunt Krynicki <zygmunt.krynicki@canonical.com>
 
7
#
 
8
# Checkbox is free software: you can redistribute it and/or modify
 
9
# it under the terms of the GNU General Public License as published by
 
10
# the Free Software Foundation, either version 3 of the License, or
 
11
# (at your option) any later version.
 
12
#
 
13
# Checkbox is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU General Public License
 
19
# along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.
 
20
 
 
21
 
 
22
from setuptools import setup, find_packages
 
23
 
 
24
 
 
25
setup(
 
26
    name="checkbox-ng",
 
27
    version="0.1",
 
28
    url="https://launchpad.net/checkbox/",
 
29
    packages=find_packages(),
 
30
    author="Zygmunt Krynicki",
 
31
    test_suite='checkbox_ng.tests.test_suite',
 
32
    author_email="zygmunt.krynicki@canonical.com",
 
33
    license="GPLv3+",
 
34
    description="CheckBox / Next Generation",
 
35
    long_description=open("README.rst", "rt", encoding="UTF-8").read(),
 
36
    install_requires=[
 
37
        'plainbox >= 0.3',
 
38
    ],
 
39
    entry_points={
 
40
        'console_scripts': [
 
41
            'checkbox=checkbox_ng.main:main',
 
42
        ],
 
43
    },
 
44
    include_package_data=True)