[3266] | 1 | #!/usr/bin/env python |
---|
| 2 | # |
---|
| 3 | # $Id: setup.py,v 1.32 2010/10/17 15:47:21 ghantoos Exp $ |
---|
| 4 | # |
---|
| 5 | # Copyright (C) 2008-2009 Ignace Mouzannar (ghantoos) <ghantoos@ghantoos.org> |
---|
| 6 | # |
---|
| 7 | # This file is part of lshell |
---|
| 8 | # |
---|
| 9 | # This program is free software: you can redistribute it and/or modify |
---|
| 10 | # it under the terms of the GNU General Public License as published by |
---|
| 11 | # the Free Software Foundation, either version 3 of the License, or |
---|
| 12 | # (at your option) any later version. |
---|
| 13 | # |
---|
| 14 | # This program is distributed in the hope that it will be useful, |
---|
| 15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 17 | # GNU General Public License for more details. |
---|
| 18 | # |
---|
| 19 | # You should have received a copy of the GNU General Public License |
---|
| 20 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
| 21 | |
---|
| 22 | from distutils.core import setup |
---|
| 23 | |
---|
| 24 | if __name__ == '__main__': |
---|
| 25 | |
---|
| 26 | setup(name='python3-lliurex-store', |
---|
| 27 | version='0.1', |
---|
| 28 | description='Lliurex store modules', |
---|
| 29 | long_description="""""", |
---|
| 30 | author='Lliurex Team', |
---|
| 31 | author_email='juanma1980@gmail.com', |
---|
| 32 | maintainer='Juanma Navarro', |
---|
| 33 | maintainer_email='juanma1980@gmail.com', |
---|
| 34 | keywords=['software','store','instalar','tienda'], |
---|
| 35 | url='http://www.lliurex.net', |
---|
| 36 | license='GPL', |
---|
| 37 | platforms='UNIX', |
---|
| 38 | # scripts = [''], |
---|
[3271] | 39 | package_dir = {'':'python3-lliurex-store.install/usr/share'}, |
---|
[3274] | 40 | packages = ['lliurexstore','lliurexstore.plugins'], |
---|
[3266] | 41 | data_files = [], |
---|
| 42 | classifiers=[ |
---|
| 43 | 'Development Status :: 4 - Beta', |
---|
| 44 | 'Environment :: Console' |
---|
| 45 | 'Intended Audience :: End Users', |
---|
| 46 | 'License :: OSI Approved :: GNU General Public License v3', |
---|
| 47 | 'Operating System :: POSIX', |
---|
| 48 | 'Programming Language :: Python', |
---|
| 49 | 'Topic :: Software store', |
---|
| 50 | 'Topic :: Install apps', |
---|
| 51 | ], |
---|
| 52 | ) |
---|
| 53 | |
---|