root/boscli-oss/boscli-oss-core/setup.py @ 212

Revision 212, 1.1 kB (checked in by eferro, 13 months ago)

migration of debian package to python-support. Improved docs. Some cleans. Fix #57. Fix #50. Ref #5. Ref #42.

  • Property svn:executable set to *
Line 
1#!/usr/bin/env python
2
3from distutils.core import setup
4import glob
5import os.path
6
7setup( 
8    name='Boscli-oss', 
9    version='0.2.0', 
10    author='Eduardo Ferro Aldama', 
11    author_email='eferro@alea-soluciones.com', 
12    url='http://oss.alea-soluciones.com/trac/wiki/BoscliOss', 
13    desctiption ='Extensible command line processor for "ad hoc" shells creation',
14    license='GPL',
15    platforms = 'Linux',
16    classifiers = [
17        'Development Status :: 5 - Production/Stable',
18        'Environment :: Console',
19        'Intended Audience :: Developers',
20        'Intended Audience :: System Administrators',
21        'License :: OSI Approved :: GNU General Public License (GPL)',
22        'Operating System :: POSIX :: Linux',
23        'Programming Language :: Python',
24        'Topic :: Software Development :: Libraries :: Python Modules',
25        'Topic :: Software Development :: User Interfaces',
26        'Topic :: Software Development :: Interpreters',
27        ],
28
29    package_dir  = { '' : 'src' }, 
30    packages = ['boscli', ],
31    scripts = ['src/bin/boscli', ],
32    data_files = [ ( '/usr/lib/boscli/', 
33                     glob.glob( 'src/lib/*.py')  ) ],
34)
Note: See TracBrowser for help on using the browser.