| 1 | #!/usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | from distutils.core import setup |
|---|
| 4 | import glob |
|---|
| 5 | import os.path |
|---|
| 6 | |
|---|
| 7 | setup( |
|---|
| 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 | ) |
|---|