1 | #!/usr/bin/env python3 |
---|
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 | import sys |
---|
24 | |
---|
25 | |
---|
26 | if __name__ == '__main__': |
---|
27 | |
---|
28 | setup(name='python3-epi', |
---|
29 | version='0.1', |
---|
30 | description='Easy program installer.Core library package', |
---|
31 | long_description="""""", |
---|
32 | author='Lliurex Team', |
---|
33 | author_email='juapesai@hotmail.com', |
---|
34 | maintainer='Juan Ramon Pelegrina', |
---|
35 | maintainer_email='juapaesi@hotmail.com', |
---|
36 | keywords=['software','instalar'], |
---|
37 | url='http://www.lliurex.net', |
---|
38 | license='GPL', |
---|
39 | platforms='UNIX', |
---|
40 | packages = ['epi'], |
---|
41 | package_dir = {'epi':'python3-epi'}, |
---|
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', |
---|
50 | 'Topic :: Install apps', |
---|
51 | ], |
---|
52 | ) |
---|