forked from IndustriaTech/cmsplugin-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (27 loc) · 943 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
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='cmsplugin-carousel',
url='https://github.com/leuro/cmsplugin-carousel',
version='0.0.1',
description='A simple app to create DjangoCMS carousels with bootstrap.',
long_description=README,
install_requires=[
'django-cms>=2.4.3',
'cmsplugin-filer>=0.9.5',
'django-orderedmodel>=0.1.5',
],
packages=find_packages(),
package_data={'': ['license.txt']},
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
],
)