forked from chrisglass/cmsplugin_facebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 871 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
from setuptools import setup, find_packages
version = __import__('cmsplugin_facebook').__version__
setup(
name = 'cmsplugin_facebook',
version = version,
license= 'BSD',
description = 'Django CMS Facebook Plugins',
author = 'Christopher Glass',
author_email = 'christopher.glass@divio.ch',
url = 'http://github.com/chrisglass/cmsplugin_facebook',
packages = find_packages(),
zip_safe=False,
package_data={
'cmsplugin_facebook': [
'templates/cmsplugin_facebook/*.html',
]
},
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',
]
)