File: setup.py

package info (click to toggle)
python-shelltoolbox 0.2.1%2Bbzr17-1.1
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 96 kB
  • ctags: 195
  • sloc: python: 1,076; makefile: 2
file content (26 lines) | stat: -rwxr-xr-x 694 bytes parent folder | download
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
#!/usr/bin/env python
#
# Copyright 2012 Canonical Ltd.  This software is licensed under the
# GNU General Public License version 3 (see the file LICENSE).


__version__ = '0.2.1'

from setuptools import setup

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',
    url='https://launchpad.net/python-shell-toolbox',
    classifiers=[
        "Development Status :: 2 - Pre-Alpha",
        "Intended Audience :: Developers",
        "Programming Language :: Python",
    ],
)