forked from MegaMark16/django-cms-fancybox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.07 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
35
36
37
38
39
from setuptools import setup, find_packages
import os
version = __import__('cmsplugin_fancybox').__version__
install_requires = [
'setuptools',
'django',
'django-cms',
'django-filer',
]
setup(
name = "django-cms-fancybox",
version = version,
url = 'http://github.com/megamark16/django-cms-fancybox',
license = 'BSD',
platforms=['OS Independent'],
description = "A fancybox extension for Django CMS",
author = "Mark Ransom",
author_email = '[email protected]',
packages=find_packages(),
install_requires = install_requires,
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',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
package_dir={
'cmsplugin_fancybox': 'cmsplugin_fancybox',
},
)