aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: cb0393471647d190a60cc30ab9ef9badcd7f5e84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/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(),
)