-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 805 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 805 Bytes
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
import os
from setuptools import setup, find_packages
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)),
'README.rst')
dependencies = [
'django-cms>=2.3,<2.3.6',
'django-sekizai>=0.6.1,<0.9.0',
'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='1.4.7',
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,
)