-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
34 lines (31 loc) · 1.06 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
from setuptools import setup
import os
setup(
name = "cmsplugin-bootstrap-carousel",
packages = ['cmsplugin_bootstrap_carousel',],
package_data = {
'': [
'templates/cmsplugin_bootstrap_carousel/*.html',
]
},
version = "0.1",
description = "Bootstrap carousel plugin for django-cms 2.2",
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author = "Antoine Nguyen",
author_email = "[email protected]",
url = "http://bitbucket.org/tonioo/cmsplugin-bootstrap-carousel",
license = "BSD",
keywords = ["django", "django-cms", "bootstrap", "carousel"],
classifiers = [
"Programming Language :: Python",
"Environment :: Web Environment",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Django"
],
include_package_data = True,
zip_safe = True,
install_requires = ['Django-CMS>=2.2'],
)