-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·42 lines (40 loc) · 1.33 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
#!/usr/bin/env python
from fancypages import __version__
from setuptools import setup, find_packages
setup(
name='django-fancypages',
version=__version__,
url='https://github.com/tangentlabs/django-fancypages',
author="Sebastian Vetter",
author_email="[email protected]",
description="Make content editing in Django fancier",
long_description='\n\n'.join([
open('README.rst').read(),
open('CHANGELOG.rst').read(),
]),
keywords="django, cms, pages, flatpages",
license='BSD',
platforms=['linux'],
packages=find_packages(exclude=["sandbox*", "tests*"]),
include_package_data=True,
install_requires=[
'Django>=1.5',
'unidecode',
'django-treebeard',
'django-model-utils',
'django-shortuuidfield',
# we are using DRF routers that are only available in
# DRF 2.3+ so we are restricting the version here
'djangorestframework>=2.3.10,<3.0.0',
'pillow',
'sorl-thumbnail>=11.12.1b',
],
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python',
]
)