From e1eaa55f65206de60045c1245edc1a20050be7ba Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sun, 8 Jan 2012 15:47:04 +0100 Subject: [PATCH] removing dependency on setuptools --- setup.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index da4108b..bc27b07 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,8 @@ setuptools.setup( 'License :: OSI Approved :: GNU General Public License (GPL)', 'Operating System :: OS Independent', ], - keywords='calendar calendaring ical icalendar event todo journal recurring', + keywords='calendar calendaring ical icalendar event todo journal ' + 'recurring', maintainer="Rok Garbas", maintainer_email="rok@garbas.si", author='MaxM', @@ -26,12 +27,8 @@ setuptools.setup( package_dir={'': 'src'}, include_package_data=True, zip_safe=False, - install_requires=[ - 'setuptools', - ], + install_requires=[], extras_require={ - 'test': [ - 'unittest2', - ], + 'test': ['unittest2'], }, )