forked from chmeliuk/cmsplugin-simple-youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 806 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
setup(
name='cmsplugin-simple-youtube',
version='0.0.1',
description='Simple django cms plugin which allow you insert video in to your page.',
author='Denys Chmeliuk',
author_email='[email protected]',
url='http://github.com/chmeliuk/cmsplugin-simple-youtube/',
packages=find_packages(),
provides=['cmsplugin_simple_youtube',],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
include_package_data=True,
zip_safe=False,
install_requires=[]
)