-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
29 lines (27 loc) · 878 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='django-docviewer',
version='0.4',
description='documentcloud for django',
long_description="",
author='oxys',
author_email='[email protected]',
url='https://github.com/oxys-net/django-docviewer',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=['django-autoslug',
'django-model-utils',
'celery',
'django-haystack',
'django-pipeline'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
]
)