mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-13 07:29:39 +00:00
24 lines
621 B
Python
24 lines
621 B
Python
# This file is part of the Indico plugins.
|
|
# Copyright (C) 2020 CERN and ENEA
|
|
#
|
|
# The Indico plugins are free software; you can redistribute
|
|
# them and/or modify them under the terms of the MIT License;
|
|
# see the LICENSE file for more details.
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
# XXX: keeping some entries in here to make bulk updates easier while
|
|
# other plugins still have this metadata in setup.py; everything else
|
|
# is in setup.cfg now
|
|
setup(
|
|
name='indico-plugin-vc-zoom',
|
|
version='2.3b1',
|
|
install_requires=[
|
|
'indico>=2.3.2.dev0',
|
|
'PyJWT<2'
|
|
],
|
|
)
|