forked from ask/chishop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (54 loc) · 1.62 KB
/
setup.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
chishop = __import__('chishop', {}, {}, [''])
tests_require = [
'djangopypi',
'South==0.7.1',
'Django>=1.3',
'django-registration',
'django-haystack',
'Whoosh',
]
setup(
name='chishop',
version=chishop.__version__,
description='Simple PyPI server written in Django.',
author='Ask Solem',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
url="http://ask.github.com/chishop",
zip_safe=False,
install_requires=[
'djangopypi',
'South==0.7.1',
'Django>=1.3',
'django-registration',
'django-haystack>=1.1.0',
'Whoosh',
],
dependency_links=[
'https://bitbucket.org/ubernostrum/django-registration/downloads/django-registration-0.8-alpha-1.tar.gz#egg=django-registration',
'https://github.com/disqus/djangopypi/tarball/master#egg=djangopypi',
],
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",
],
tests_require=tests_require,
extras_require={'test': tests_require},
)