forked from pbs/django-cms-smartsnippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 840 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
import os
from setuptools import setup, find_packages
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)),
'README.rst')
dependencies = [
'django>=1.3,<1.5',
'django-cms>=2.3,<2.3.6',
'django-admin-extend'
]
dependency_links = [
'http://github.com/pbs/django-admin-extend/tarball/master#egg=django-admin-extend-dev',
]
setup(
name='django-cms-smartsnippets',
version='0.4.0',
description='Parametrizable Django CMS snippets.',
long_description = open(README_PATH, 'r').read(),
author='Sever Banesiu',
author_email='banesiu.sever@gmail.com',
packages=find_packages(),
include_package_data=True,
license='BSD License',
install_requires=dependencies,
dependency_links=dependency_links,
setup_requires = ['s3sourceuploader', ],
)