mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
29 lines
759 B
Python
29 lines
759 B
Python
from __future__ import unicode_literals
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
setup(
|
|
name='indico-plugin-vc-zoom',
|
|
version='0.3-dev',
|
|
description='Zoom video-conferencing plugin for Indico',
|
|
url='',
|
|
license='MIT',
|
|
author='Giovanni Mariano - ENEA',
|
|
author_email='giovanni.mariano@enea.it',
|
|
packages=find_packages(),
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
install_requires=[
|
|
'indico>=2',
|
|
'PyJWT'
|
|
],
|
|
classifiers=[
|
|
'Environment :: Plugins',
|
|
'Environment :: Web Environment',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 2.7'
|
|
],
|
|
entry_points={'indico.plugins': {'vc_zoom = indico_vc_zoom.plugin:ZoomPlugin'}}
|
|
)
|