~ricardokirkner/click-toolbelt/release-0.4.0

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Copyright 2013 Canonical Ltd.  This software is licensed under the
# GNU General Public License version 3 (see the file LICENSE).
#!/usr/bin/env python
from setuptools import setup, find_packages

from click_toolbelt import __namespace__, __version__

try:
    long_description = open('README.txt', 'rt').read()
except IOError:
    long_description = ''


setup(
    name='click-toolbelt',
    version=__version__,

    description='Click App Toolbelt',
    long_description=long_description,

    author='Ricardo Kirkner',
    author_email='ricardo.kirkner@canonical.com',

    url='https://launchpad.net/click-toolbelt',
    download_url='https://launchpad.net/click-toolbelt',

    classifiers=[
        'Development Status :: 4 - Beta',
        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.3',
        'Intended Audience :: Developers',
        'Environment :: Console',
    ],

    platforms=['Any'],

    scripts=[],

    provides=[],
    install_requires=[
        'cliff',
        'pyxdg',
        'requests-oauthlib',
        'requests',
        'ssoclient',
    ],

    namespace_packages=[],
    packages=find_packages(),
    include_package_data=True,

    entry_points={
        'console_scripts': [
            'click-toolbelt = click_toolbelt.toolbelt:main'
        ],
        __namespace__: [
            'login = click_toolbelt.login:Login',
            'upload = click_toolbelt.upload:Upload',
            'info = click_toolbelt.info:Info',
            'channels = click_toolbelt.channels:Channels',
        ],
    },

    zip_safe=False,

    test_suite='click_toolbelt.tests',
    tests_require=[
        'mock',
        'responses',
    ],
)