forked from growlf/djangocms-stacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.02 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
from setuptools import setup, find_packages
setup(
name = "djangocms-stacks",
version = __import__('stacks').__version__,
url = 'http://github.com/divio/djangocms-stacks',
license = 'BSD',
platforms=['OS Independent'],
description = "Stacks: Re-usable content blocks in django CMS.",
long_description = open('README.rst').read() + u'\n' + open('HISTORY.rst').read(),
author = 'Divio AG',
author_email = 'developers@divio.ch',
packages=find_packages(),
install_requires = (
# 'Django>=1.3,<1.5', # no need to limit while in development
'Django>=1.3',
'django-cms>=2.3',
'Django-Select2',
),
include_package_data=True,
zip_safe=False,
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
)