~zyga/extcmd/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Zygmunt Krynicki
  • Date: 2011-08-29 15:24:37 UTC
  • Revision ID: zygmunt.krynicki@linaro.org-20110829152437-j1zoi6iy9yv0b4t2
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
# Copyright (c) 2011 Linaro
 
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
from setuptools import setup
 
19
 
 
20
 
 
21
setup(
 
22
    name='extcmd',
 
23
    version=":versiontools:extcmd:",
 
24
    author='Zygmunt Krynicki',
 
25
    author_email='zkrynicki@gmail.com',
 
26
    url='https://launchpad.net/extcmd',
 
27
    description='External Command - subprocess with advanced output processing',
 
28
    long_description=open("README").read(),
 
29
    py_modules=['extcmd'],
 
30
    test_suite='extcmd_test.test_suite',
 
31
    license="GNU LGPLv3",
 
32
    classifiers=[
 
33
        "Development Status :: 3 - Alpha",
 
34
        "Intended Audience :: Developers",
 
35
        "License :: OSI Approved :: GNU General Public License (GPL)",
 
36
        "Operating System :: OS Independent",
 
37
        "Programming Language :: Python :: 2.6",
 
38
        "Programming Language :: Python :: 2.7",
 
39
    ],
 
40
    setup_requires=['versiontools >= 1.4'],
 
41
    zip_safe=True)