-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (24 loc) · 796 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
30
31
32
import os
from setuptools import setup, find_packages
README = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')
DEPENDENCIES = [
'django >=1.4, <1.5',
'django-cms>=2.3.5,<2.3.6',
]
DEPENDENCY_LINKS = []
setup(
name='django-cms-layouts',
version='0.1.1',
description='Layer over django-cms that allows to create layouts '
'which can be used to render existing CMS pages with '
'different content.',
long_description = open(README, 'r').read(),
author='Laura Feier',
author_email='feierlaura10@gmail.com',
packages=find_packages(),
include_package_data=True,
install_requires=DEPENDENCIES,
dependency_links=DEPENDENCY_LINKS,
setup_requires=['s3sourceuploader', ],
classifiers=[]
)