forked from jbazik/cmsplugin-video-youtube
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 847 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (23 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import find_packages, setup
setup(name='cmsplugin-video-youtube',
version='0.1',
description='Embedded YouTube video plugin for django-cms',
author='John Bazik',
author_email='jsb@cs.brown.edu',
url='https://github.com/jbazik/cmsplugin-video-youtube/',
packages=find_packages(),
include_package_data = True,
provides=['cmsplugin_video_youtube'],
license='LGPL',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
],
)