Skip to content

Commit

Permalink
fix setup.py requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
issackelly committed Mar 19, 2011
1 parent ba50f7d commit ba4fe9f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 21 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
42 changes: 21 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
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="[email protected]",
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",
],
)

0 comments on commit ba4fe9f

Please sign in to comment.