From ad8f500f8d89e0b82a653fdac80da34e70fa67b0 Mon Sep 17 00:00:00 2001 From: Felipe Reyes Date: Tue, 8 Jul 2008 16:42:59 -0400 Subject: [PATCH] [setup] tweaked a little the setup script --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 02725ee..6ce581c 100755 --- a/setup.py +++ b/setup.py @@ -23,16 +23,17 @@ ## along with this program. If not, see . ## -from setuptools import setup +from setuptools import setup, find_packages setup(name="Marvin", version='0.1', description="A simple photo manager", author="Felipe Reyes", author_email="felipereyes@gmail.com", - packages=['marvin'], + license='GPL v3 or later' + packages=find_packages(), package_data={ - 'rascase': + 'marvin': ['ui/*',] }, entry_points = {'console_scripts': -- 2.11.4.GIT