From ba4fe9f7c7b7b2644ecef0816f632b8a0543a23f Mon Sep 17 00:00:00 2001 From: Issac Kelly Date: Sat, 19 Mar 2011 17:06:25 -0400 Subject: [PATCH] fix setup.py requirements --- README.md | 2 ++ setup.py | 42 +++++++++++++++++++++--------------------- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 5b36aec..3001e35 100644 --- a/README.md +++ b/README.md @@ -31,4 +31,6 @@ Then syncdb, or migrate and collectstatic (if you are on production) It's important to add servee urls and frontendadmin urls from servee import frontendadmin + frontendadmin.site.autodiscover() + # ... url(r"^servee/", include(frontendadmin.site.urls)), diff --git a/setup.py b/setup.py index 88a817b..2e9ccf4 100644 --- a/setup.py +++ b/setup.py @@ -1,31 +1,31 @@ from setuptools import setup, find_packages setup( - name='django-servee', - version=__import__('servee').__version__, - description=__import__('servee').__about__, - long_description=open('README.md').read(), + name="django-servee", + version=__import__("servee").__version__, + description=__import__("servee").__about__, + long_description=open("README.md").read(), # Get more strings from http://www.python.org/pypi?:action=list_classifiers - author='Kelly Creative Tech - Issac Kelly', - author_email='issac@kellycreativetech.com', - url='http://www.servee.com', - #download_url='http://github.com/robhudson/django-debug-toolbar/downloads', - license='BSD', - packages=find_packages(exclude=['ez_setup']), + author="Kelly Creative Tech - Issac Kelly", + author_email="issac@kellycreativetech.com", + url="http://www.servee.com", + #download_url="http://github.com/robhudson/django-debug-toolbar/downloads", + license="BSD", + packages=find_packages(exclude=["ez_setup"]), include_package_data=True, zip_safe=False, # because we're including media that Django needs - requires = [ - 'django-classy-tags', - 'django-uni-form', + install_requires = [ + "django-classy-tags>=0.3.3", + "django-uni-form>=0.7.0", ], classifiers=[ - 'Development Status :: 3 - Alpha', - 'Environment :: Web Environment', - 'Framework :: Django', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: BSD License', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Topic :: Software Development :: Libraries :: Python Modules', + "Development Status :: 3 - Alpha", + "Environment :: Web Environment", + "Framework :: Django", + "Intended Audience :: Developers", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Topic :: Software Development :: Libraries :: Python Modules", ], )