forked from IndustriaTech/django-cmsplugin-tabs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.12 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.12 KB
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
35
36
37
38
39
40
41
42
43
# encoding=utf8
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.md')
setup(
name="django-cmsplugin-tabs",
version="0.0.4",
url='http://github.com/MagicSolutions/django-cmsplugin-tabs',
description="Plugin for Django-CMS that create list of tabs (using jquery ui)",
long_description=README,
author='Venelin Stoykov',
author_email='venelin@magicbg.com',
packages=[
'cmsplugin_tabs',
'cmsplugin_tabs.migrations',
],
package_data={
'cmsplugin_tabs': [
'templates/cmsplugin_tabs/*.html',
'static/cmsplugin_tabs/js/*.js',
'locale/bg/LC_MESSAGES/django.*',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=[
'django>=1.3',
'django-cms',
'django-tinymce',
],
)