mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-13 07:29:39 +00:00
23 lines
596 B
Python
23 lines
596 B
Python
# This file is part of the Indico plugins.
|
|
# Copyright (C) 2020 - 2021 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 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='3.0-dev',
|
|
install_requires=[
|
|
'indico>=3.0.dev0',
|
|
'PyJWT>=1.7.1,<2'
|
|
],
|
|
)
|