forked from django-cms/django-filer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (49 loc) · 1.8 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
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
import os
from setuptools import find_packages, setup
version = __import__('filer').__version__
def read(fname):
# read the contents of a text file
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="django-filer",
version=version,
url='http://github.com/divio/django-filer',
license='BSD',
platforms=['OS Independent'],
description="A file management application for django that makes handling "
"of files and images a breeze.",
long_description = read('README.rst'),
author='Stefan Foulis',
author_email='[email protected]',
packages=find_packages(),
install_requires=(
'Django>=1.8,<1.11.999', # Django is known to use rc versions
'easy-thumbnails>=2,<2.5',
'django-mptt>=0.6,<0.9', # the exact version depends on Django
'django_polymorphic>=0.7,<1.4',
'Unidecode>=0.04,<0.05',
),
include_package_data=True,
zip_safe=False,
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)