Skip to content

Commit

Permalink
Update setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Feb 16, 2014
1 parent 1859ada commit e636a64
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@
import os

setup(
name = "django-redisboard",
version = "0.2.7",
url = 'https://github.com/ionelmc/django-redisboard',
download_url = '',
license = 'BSD',
description = "Brief redis monitoring in django admin",
long_description = file(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author = 'Ionel Cristian Mărieș',
author_email = 'contact@ionelmc.ro',
packages = find_packages('src'),
package_dir = {'':'src'},
include_package_data = True,
install_requires = [
name="django-redisboard",
version="0.2.7",
url='https://github.com/ionelmc/django-redisboard',
download_url='',
license='BSD',
description="Brief redis monitoring in django admin",
long_description=file(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='Ionel Cristian Mărieș',
author_email='contact@ionelmc.ro',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=[
'redis',
'Django>=1.3',
],
zip_safe = False,
classifiers = [
'Development Status :: 4 - Beta',
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
Expand Down

0 comments on commit e636a64

Please sign in to comment.