removed commented code
[marvin.git] / setup.py
blobfe37fb2fc444d27d252a967f814057d11f409c3a
1 #!/usr/bin/python2.5
2 ##
3 ## setup.py
4 ## Login : <freyes@yoda.>
5 ## Started on Fri Dec 14 22:14:38 2007 Felipe Reyes
6 ## $Id$
7 ##
8 ## Copyright (C) 2007 Felipe Reyes <felipereyes@gmail.com>
9 ##
10 ## This file is part of Rascase.
12 ## Rascase is free software: you can redistribute it and/or modify
13 ## it under the terms of the GNU General Public License as published by
14 ## the Free Software Foundation, either version 3 of the License, or
15 ## (at your option) any later version.
17 ## Rascase is distributed in the hope that it will be useful,
18 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ## GNU General Public License for more details.
22 ## You should have received a copy of the GNU General Public License
23 ## along with this program. If not, see <http://www.gnu.org/licenses/>.
26 from setuptools import setup, find_packages
28 setup(name="Marvin",
29 version='0.1',
30 description="A simple photo manager",
31 author="Felipe Reyes",
32 author_email="felipereyes@gmail.com",
33 license='GPL v3 or later',
34 packages=find_packages(),
35 package_data={
36 'marvin':
37 ['ui/*',]
39 entry_points = {'console_scripts':
40 ['marvin = marvin.view:start',]