forked from robertour/django-docviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.05 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='django-docviewer',
version='0.1',
description='documentcloud for django',
long_description="",
author='robertour',
author_email='robertour@gmail.com',
url='https://github.com/robertour/django-docviewer',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=[
'django-autoslug==1.7.1',
'django-model-utils==2.2',
'celery==3.0.23',
'django-haystack==2.1.0',
'django-pipeline==1.3.15',
'django-celery==3.0.23',
'celery-haystack==0.7.2',
],
dependency_links = [
'http://github.com/toastdriven/django-haystack/tarball/master#egg=django-haystack-2.0.0-beta'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
]
)