#!/usr/bin/env python # -*- coding: utf-8 -*- import codecs import djangopypi from setuptools import setup, find_packages setup( name='chishop', version=djangopypi.__version__, packages=find_packages(), description='Simple PyPI server written in Django.', author='Ask Solem', author_email='askh@opera.com', url="http://ask.github.com/chishop", zip_safe=False, install_requires=[ 'django>=1.0', 'docutils', 'django-registration==0.8-alpha-1', ], dependency_links=[ 'http://bitbucket.org/ubernostrum/django-registration/downloads', ], classifiers=[ "Development Status :: 3 - Alpha", "Environment :: Web Environment", "Framework :: Django", "Operating System :: OS Independent", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: BSD License", "Topic :: System :: Software Distribution", "Programming Language :: Python", ], long_description=codecs.open('README', "r", "utf-8").read(), )