forked from tangentlabs/django-fancypages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·44 lines (43 loc) · 1.4 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-fancypages',
version=":versiontools:fancypages:",
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*"]),
include_package_data=True,
install_requires=[
'versiontools>=1.9.1,<1.10',
'Django>=1.4.5,<1.6',
'django-model-utils>=1.1.0,<1.5',
'djangorestframework>=2.1.12,<2.2',
'South>=0.7.6,<0.9',
'django-treebeard>=1.61,<1.7',
'django-appconf>=0.6,<0.7',
'django-twitter-tag>=1.1,<1.2',
'pillow>=2.0.0,<2.1',
'sorl-thumbnail>=11.12,<12',
'django-compressor>=1.2,<1.4',
],
setup_requires=[
'versiontools >= 1.8',
],
# 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',
]
)