~frankban/python-shelltoolbox/apt-and-run

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
#!/usr/bin/env python
#
# Copyright 2012 Canonical Ltd.  This software is licensed under the
# GNU General Public License version 3 (see the file LICENSE).

import ez_setup


ez_setup.use_setuptools()


__version__ = '0.1.1'


setup(
    name='shelltoolbox',
    version=__version__,
    packages=['shelltoolbox'],
    include_package_data=True,
    zip_safe=False,
    maintainer='Launchpad Yellow',
    description=('Helper functions for interacting with shell commands'),
    license='GPL v3',
    # this list should only contain direct dependencies--things imported or
    # used in zcml.
    url='https://launchpad.net/python-shell-toolbox',
    classifiers=[
        "Development Status :: 2 - Pre-Alpha",
        "Intended Audience :: Developers",
        "Programming Language :: Python",
    ],
)