From baad04bd4aee84c3647f4f9b1d22945517d00276 Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Wed, 20 Jan 2021 16:08:43 +0100 Subject: [PATCH] Move metadata to setup.cfg related to indico/indico#4680 --- livesync/setup.cfg | 30 ++++++++++++++++++++++++++++++ livesync/setup.py | 24 ++---------------------- livesync_debug/setup.cfg | 31 +++++++++++++++++++++++++++++++ livesync_debug/setup.py | 27 ++------------------------- payment_manual/setup.cfg | 30 ++++++++++++++++++++++++++++++ payment_manual/setup.py | 24 ++---------------------- payment_paypal/setup.cfg | 30 ++++++++++++++++++++++++++++++ payment_paypal/setup.py | 24 ++---------------------- piwik/setup.cfg | 30 ++++++++++++++++++++++++++++++ piwik/setup.py | 24 ++---------------------- previewer_code/setup.cfg | 31 +++++++++++++++++++++++++++++++ previewer_code/setup.py | 21 ++------------------- previewer_jupyter/setup.cfg | 31 +++++++++++++++++++++++++++++++ previewer_jupyter/setup.py | 21 ++------------------- storage_s3/setup.cfg | 31 +++++++++++++++++++++++++++++++ storage_s3/setup.py | 27 ++------------------------- ursh/setup.cfg | 30 ++++++++++++++++++++++++++++++ ursh/setup.py | 24 ++---------------------- vc_dummy/setup.cfg | 30 ++++++++++++++++++++++++++++++ vc_dummy/setup.py | 24 ++---------------------- vc_vidyo/setup.cfg | 31 +++++++++++++++++++++++++++++++ vc_vidyo/setup.py | 27 ++------------------------- vc_zoom/setup.cfg | 4 ++++ vc_zoom/setup.py | 12 +----------- 24 files changed, 362 insertions(+), 256 deletions(-) create mode 100644 livesync/setup.cfg create mode 100644 livesync_debug/setup.cfg create mode 100644 payment_manual/setup.cfg create mode 100644 payment_paypal/setup.cfg create mode 100644 piwik/setup.cfg create mode 100644 previewer_code/setup.cfg create mode 100644 previewer_jupyter/setup.cfg create mode 100644 storage_s3/setup.cfg create mode 100644 ursh/setup.cfg create mode 100644 vc_dummy/setup.cfg create mode 100644 vc_vidyo/setup.cfg diff --git a/livesync/setup.cfg b/livesync/setup.cfg new file mode 100644 index 0000000..9368a04 --- /dev/null +++ b/livesync/setup.cfg @@ -0,0 +1,30 @@ +[metadata] +name = indico-plugin-livesync +version = 3.0-dev +description = Framework for pushing Indico event data to external services +url = https://github.com/indico/indico-plugins +license = MIT +author = Indico Team +author_email = indico-team@cern.ch +classifiers = + Environment :: Plugins + Environment :: Web Environment + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3.9 + +[options] +packages = find: +zip_safe = false +include_package_data = true +python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + +[options.entry_points] +indico.plugins = + livesync = indico_livesync.plugin:LiveSyncPlugin + + + +[pydocstyle] +ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213 diff --git a/livesync/setup.py b/livesync/setup.py index 0471e91..03c7604 100644 --- a/livesync/setup.py +++ b/livesync/setup.py @@ -5,27 +5,7 @@ # them and/or modify them under the terms of the MIT License; # see the LICENSE file for more details. -from setuptools import find_packages, setup +from setuptools import setup -setup( - name='indico-plugin-livesync', - version='3.0-dev', - description='Framework for pushing Indico event data to external services', - url='https://github.com/indico/indico-plugins', - license='MIT', - author='Indico Team', - author_email='indico-team@cern.ch', - packages=find_packages(), - zip_safe=False, - include_package_data=True, - install_requires=['indico>=3.0.dev0'], - python_requires='~=3.9', - classifiers=[ - 'Environment :: Plugins', - 'Environment :: Web Environment', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.9' - ], - entry_points={'indico.plugins': {'livesync = indico_livesync.plugin:LiveSyncPlugin'}} -) +setup() diff --git a/livesync_debug/setup.cfg b/livesync_debug/setup.cfg new file mode 100644 index 0000000..16a9876 --- /dev/null +++ b/livesync_debug/setup.cfg @@ -0,0 +1,31 @@ +[metadata] +name = indico-plugin-livesync-debug +version = 3.0-dev +description = Debug target for the Indico LiveSync plugin +url = https://github.com/indico/indico-plugins +license = MIT +author = Indico Team +author_email = indico-team@cern.ch +classifiers = + Environment :: Plugins + Environment :: Web Environment + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3.9 + +[options] +packages = find: +zip_safe = false +include_package_data = true +python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + indico-plugin-livesync>=3.0.dev0 + +[options.entry_points] +indico.plugins = + livesync_debug = indico_livesync_debug.plugin:LiveSyncDebugPlugin + + + +[pydocstyle] +ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213 diff --git a/livesync_debug/setup.py b/livesync_debug/setup.py index 4aa0c40..03c7604 100644 --- a/livesync_debug/setup.py +++ b/livesync_debug/setup.py @@ -5,30 +5,7 @@ # them and/or modify them under the terms of the MIT License; # see the LICENSE file for more details. -from setuptools import find_packages, setup +from setuptools import setup -setup( - name='indico-plugin-livesync-debug', - version='3.0-dev', - description='Debug target for the Indico LiveSync plugin', - url='https://github.com/indico/indico-plugins', - license='MIT', - author='Indico Team', - author_email='indico-team@cern.ch', - packages=find_packages(), - zip_safe=False, - include_package_data=True, - install_requires=[ - 'indico>=3.0.dev0', - 'indico-plugin-livesync>=3.0.dev0', - ], - python_requires='~=3.9', - classifiers=[ - 'Environment :: Plugins', - 'Environment :: Web Environment', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.9' - ], - entry_points={'indico.plugins': {'livesync_debug = indico_livesync_debug.plugin:LiveSyncDebugPlugin'}} -) +setup() diff --git a/payment_manual/setup.cfg b/payment_manual/setup.cfg new file mode 100644 index 0000000..c2a1af9 --- /dev/null +++ b/payment_manual/setup.cfg @@ -0,0 +1,30 @@ +[metadata] +name = indico-plugin-payment-manual +version = 3.0-dev +description = Payment plugin for Indico that can be used for custom payment information/links +url = https://github.com/indico/indico-plugins +license = MIT +author = Indico Team +author_email = indico-team@cern.ch +classifiers = + Environment :: Plugins + Environment :: Web Environment + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3.9 + +[options] +packages = find: +zip_safe = false +include_package_data = true +python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + +[options.entry_points] +indico.plugins = + payment_manual = indico_payment_manual.plugin:ManualPaymentPlugin + + + +[pydocstyle] +ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213 diff --git a/payment_manual/setup.py b/payment_manual/setup.py index f169f73..03c7604 100644 --- a/payment_manual/setup.py +++ b/payment_manual/setup.py @@ -5,27 +5,7 @@ # them and/or modify them under the terms of the MIT License; # see the LICENSE file for more details. -from setuptools import find_packages, setup +from setuptools import setup -setup( - name='indico-plugin-payment-manual', - version='3.0-dev', - description='Payment plugin for Indico that can be used for custom payment information/links', - url='https://github.com/indico/indico-plugins', - license='MIT', - author='Indico Team', - author_email='indico-team@cern.ch', - packages=find_packages(), - zip_safe=False, - include_package_data=True, - install_requires=['indico>=3.0.dev0'], - python_requires='~=3.9', - classifiers=[ - 'Environment :: Plugins', - 'Environment :: Web Environment', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.9' - ], - entry_points={'indico.plugins': {'payment_manual = indico_payment_manual.plugin:ManualPaymentPlugin'}} -) +setup() diff --git a/payment_paypal/setup.cfg b/payment_paypal/setup.cfg new file mode 100644 index 0000000..45a6aaf --- /dev/null +++ b/payment_paypal/setup.cfg @@ -0,0 +1,30 @@ +[metadata] +name = indico-plugin-payment-paypal +version = 3.0-dev +description = PayPal payments for Indico event registration fees +url = https://github.com/indico/indico-plugins +license = MIT +author = Indico Team +author_email = indico-team@cern.ch +classifiers = + Environment :: Plugins + Environment :: Web Environment + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3.9 + +[options] +packages = find: +zip_safe = false +include_package_data = true +python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + +[options.entry_points] +indico.plugins = + payment_paypal = indico_payment_paypal.plugin:PaypalPaymentPlugin + + + +[pydocstyle] +ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213 diff --git a/payment_paypal/setup.py b/payment_paypal/setup.py index 362a0c2..03c7604 100644 --- a/payment_paypal/setup.py +++ b/payment_paypal/setup.py @@ -5,27 +5,7 @@ # them and/or modify them under the terms of the MIT License; # see the LICENSE file for more details. -from setuptools import find_packages, setup +from setuptools import setup -setup( - name='indico-plugin-payment-paypal', - version='3.0-dev', - description='PayPal payments for Indico event registration fees', - url='https://github.com/indico/indico-plugins', - license='MIT', - author='Indico Team', - author_email='indico-team@cern.ch', - packages=find_packages(), - zip_safe=False, - include_package_data=True, - install_requires=['indico>=3.0.dev0'], - python_requires='~=3.9', - classifiers=[ - 'Environment :: Plugins', - 'Environment :: Web Environment', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.9' - ], - entry_points={'indico.plugins': {'payment_paypal = indico_payment_paypal.plugin:PaypalPaymentPlugin'}} -) +setup() diff --git a/piwik/setup.cfg b/piwik/setup.cfg new file mode 100644 index 0000000..62f69b2 --- /dev/null +++ b/piwik/setup.cfg @@ -0,0 +1,30 @@ +[metadata] +name = indico-plugin-piwik +version = 3.0-dev +description = Piwik integration for global and event-specific statistics in Indico +url = https://github.com/indico/indico-plugins +license = MIT +author = Indico Team +author_email = indico-team@cern.ch +classifiers = + Environment :: Plugins + Environment :: Web Environment + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3.9 + +[options] +packages = find: +zip_safe = false +include_package_data = true +python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + +[options.entry_points] +indico.plugins = + piwik = indico_piwik.plugin:PiwikPlugin + + + +[pydocstyle] +ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213 \ No newline at end of file diff --git a/piwik/setup.py b/piwik/setup.py index fd9ee7f..03c7604 100644 --- a/piwik/setup.py +++ b/piwik/setup.py @@ -5,27 +5,7 @@ # them and/or modify them under the terms of the MIT License; # see the LICENSE file for more details. -from setuptools import find_packages, setup +from setuptools import setup -setup( - name='indico-plugin-piwik', - version='3.0-dev', - description='Piwik integration for global and event-specific statistics in Indico', - url='https://github.com/indico/indico-plugins', - license='MIT', - author='Indico Team', - author_email='indico-team@cern.ch', - packages=find_packages(), - zip_safe=False, - include_package_data=True, - install_requires=['indico>=3.0.dev0'], - python_requires='~=3.9', - classifiers=[ - 'Environment :: Plugins', - 'Environment :: Web Environment', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.9' - ], - entry_points={'indico.plugins': {'piwik = indico_piwik.plugin:PiwikPlugin'}} -) +setup() diff --git a/previewer_code/setup.cfg b/previewer_code/setup.cfg new file mode 100644 index 0000000..935a14e --- /dev/null +++ b/previewer_code/setup.cfg @@ -0,0 +1,31 @@ +[metadata] +name = indico-plugin-previewer-code +version = 3.0-dev +description = Syntax highlighter for code attachments in Indico +url = https://github.com/indico/indico-plugins +license = MIT +author = Indico Team +author_email = indico-team@cern.ch +classifiers = + Environment :: Plugins + Environment :: Web Environment + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3.9 + +[options] +packages = find: +zip_safe = false +include_package_data = true +python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + Pygments>=2.7.2,<3 + +[options.entry_points] +indico.plugins = + previewer_code = indico_previewer_code:CodePreviewerPlugin + + + +[pydocstyle] +ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213 diff --git a/previewer_code/setup.py b/previewer_code/setup.py index 4ee0a62..03c7604 100644 --- a/previewer_code/setup.py +++ b/previewer_code/setup.py @@ -5,24 +5,7 @@ # them and/or modify them under the terms of the MIT License; # see the LICENSE file for more details. -from setuptools import find_packages, setup +from setuptools import setup -setup( - name='indico-plugin-previewer-code', - version='3.0-dev', - description='Syntax highlighter for code attachments in Indico', - url='https://github.com/indico/indico-plugins', - license='MIT', - author='Indico Team', - author_email='indico-team@cern.ch', - packages=find_packages(), - zip_safe=False, - include_package_data=True, - install_requires=[ - 'indico>=3.0.dev0', - 'Pygments>=2.7.2,<3', - ], - python_requires='~=3.9', - entry_points={'indico.plugins': {'previewer_code = indico_previewer_code:CodePreviewerPlugin'}} -) +setup() diff --git a/previewer_jupyter/setup.cfg b/previewer_jupyter/setup.cfg new file mode 100644 index 0000000..5a953ba --- /dev/null +++ b/previewer_jupyter/setup.cfg @@ -0,0 +1,31 @@ +[metadata] +name = indico-plugin-previewer-jupyter +version = 3.0-dev +description = Jupyter notebook rendering for attachments in Indico +url = https://github.com/indico/indico-plugins +license = MIT +author = Indico Team +author_email = indico-team@cern.ch +classifiers = + Environment :: Plugins + Environment :: Web Environment + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3.9 + +[options] +packages = find: +zip_safe = false +include_package_data = true +python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + nbconvert==5.6.1 + +[options.entry_points] +indico.plugins = + previewer_jupyter = indico_previewer_jupyter:JupyterPreviewerPlugin + + + +[pydocstyle] +ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213 diff --git a/previewer_jupyter/setup.py b/previewer_jupyter/setup.py index 922e20e..03c7604 100644 --- a/previewer_jupyter/setup.py +++ b/previewer_jupyter/setup.py @@ -5,24 +5,7 @@ # them and/or modify them under the terms of the MIT License; # see the LICENSE file for more details. -from setuptools import find_packages, setup +from setuptools import setup -setup( - name='indico-plugin-previewer-jupyter', - version='3.0-dev', - description='Jupyter notebook rendering for attachments in Indico', - url='https://github.com/indico/indico-plugins', - license='MIT', - author='Indico Team', - author_email='indico-team@cern.ch', - packages=find_packages(), - zip_safe=False, - include_package_data=True, - install_requires=[ - 'indico>=3.0.dev0', - 'nbconvert==5.6.1', - ], - python_requires='~=3.9', - entry_points={'indico.plugins': {'previewer_jupyter = indico_previewer_jupyter:JupyterPreviewerPlugin'}} -) +setup() diff --git a/storage_s3/setup.cfg b/storage_s3/setup.cfg new file mode 100644 index 0000000..d646938 --- /dev/null +++ b/storage_s3/setup.cfg @@ -0,0 +1,31 @@ +[metadata] +name = indico-plugin-storage-s3 +version = 3.0-dev +description = S3 storage backend for Indico +url = https://github.com/indico/indico-plugins +license = MIT +author = Indico Team +author_email = indico-team@cern.ch +classifiers = + Environment :: Plugins + Environment :: Web Environment + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3.9 + +[options] +packages = find: +zip_safe = false +include_package_data = true +python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + boto3>=1.14.30,<2.0 + +[options.entry_points] +indico.plugins = + storage_s3 = indico_storage_s3.plugin:S3StoragePlugin + + + +[pydocstyle] +ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213 diff --git a/storage_s3/setup.py b/storage_s3/setup.py index 0a87290..03c7604 100644 --- a/storage_s3/setup.py +++ b/storage_s3/setup.py @@ -5,30 +5,7 @@ # them and/or modify them under the terms of the MIT License; # see the LICENSE file for more details. -from setuptools import find_packages, setup +from setuptools import setup -setup( - name='indico-plugin-storage-s3', - version='3.0-dev', - description='S3 storage backend for Indico', - url='https://github.com/indico/indico-plugins', - license='MIT', - author='Indico Team', - author_email='indico-team@cern.ch', - packages=find_packages(), - zip_safe=False, - platforms='any', - install_requires=[ - 'indico>=3.0.dev0', - 'boto3>=1.14.30,<2.0', - ], - python_requires='~=3.9', - classifiers=[ - 'Environment :: Plugins', - 'Environment :: Web Environment', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.9' - ], - entry_points={'indico.plugins': {'storage_s3 = indico_storage_s3.plugin:S3StoragePlugin'}} -) +setup() diff --git a/ursh/setup.cfg b/ursh/setup.cfg new file mode 100644 index 0000000..a1b3afc --- /dev/null +++ b/ursh/setup.cfg @@ -0,0 +1,30 @@ +[metadata] +name = indico-plugin-ursh +version = 3.0-dev +description = URL shortening service for Indico +url = https://github.com/indico/indico-plugins +license = MIT +author = Indico Team +author_email = indico-team@cern.ch +classifiers = + Environment :: Plugins + Environment :: Web Environment + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3.9 + +[options] +packages = find: +zip_safe = false +include_package_data = true +python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + +[options.entry_points] +indico.plugins = + ursh = indico_ursh.plugin:UrshPlugin + + + +[pydocstyle] +ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213 diff --git a/ursh/setup.py b/ursh/setup.py index 6964468..03c7604 100644 --- a/ursh/setup.py +++ b/ursh/setup.py @@ -5,27 +5,7 @@ # them and/or modify them under the terms of the MIT License; # see the LICENSE file for more details. -from setuptools import find_packages, setup +from setuptools import setup -setup( - name='indico-plugin-ursh', - version='3.0-dev', - description='URL shortening service for Indico', - url='https://github.com/indico/indico-plugins', - license='MIT', - author='Indico Team', - author_email='indico-team@cern.ch', - packages=find_packages(), - zip_safe=False, - include_package_data=True, - install_requires=['indico>=3.0.dev0'], - python_requires='~=3.9', - classifiers=[ - 'Environment :: Plugins', - 'Environment :: Web Environment', - 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', - 'Programming Language :: Python :: 3.9' - ], - entry_points={'indico.plugins': {'ursh = indico_ursh.plugin:UrshPlugin'}} -) +setup() diff --git a/vc_dummy/setup.cfg b/vc_dummy/setup.cfg new file mode 100644 index 0000000..3301714 --- /dev/null +++ b/vc_dummy/setup.cfg @@ -0,0 +1,30 @@ +[metadata] +name = indico-plugin-vc-dummy +version = 3.0-dev +description = Dummy/example video-conferencing plugin for Indico +url = https://github.com/indico/indico-plugins +license = MIT +author = Indico Team +author_email = indico-team@cern.ch +classifiers = + Environment :: Plugins + Environment :: Web Environment + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3.9 + +[options] +packages = find: +zip_safe = false +include_package_data = true +python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + +[options.entry_points] +indico.plugins = + vc_dummy = indico_vc_dummy.plugin:DummyPlugin + + + +[pydocstyle] +ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213 diff --git a/vc_dummy/setup.py b/vc_dummy/setup.py index 662f9c7..03c7604 100644 --- a/vc_dummy/setup.py +++ b/vc_dummy/setup.py @@ -5,27 +5,7 @@ # them and/or modify them under the terms of the MIT License; # see the LICENSE file for more details. -from setuptools import find_packages, setup +from setuptools import setup -setup( - name='indico-plugin-vc-dummy', - version='3.0-dev', - description='Dummy/example video-conferencing plugin for Indico', - url='https://github.com/indico/indico-plugins', - license='MIT', - author='Indico Team', - author_email='indico-team@cern.ch', - packages=find_packages(), - zip_safe=False, - include_package_data=True, - install_requires=['indico>=3.0.dev0'], - python_requires='~=3.9', - classifiers=[ - 'Environment :: Plugins', - 'Environment :: Web Environment', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.9' - ], - entry_points={'indico.plugins': {'vc_dummy = indico_vc_dummy.plugin:DummyPlugin'}} -) +setup() diff --git a/vc_vidyo/setup.cfg b/vc_vidyo/setup.cfg new file mode 100644 index 0000000..5dbc4d7 --- /dev/null +++ b/vc_vidyo/setup.cfg @@ -0,0 +1,31 @@ +[metadata] +name = indico-plugin-vc-vidyo +version = 3.0-dev +description = Vidyo video-conferencing plugin for Indico +url = https://github.com/indico/indico-plugins +license = MIT +author = Indico Team +author_email = indico-team@cern.ch +classifiers = + Environment :: Plugins + Environment :: Web Environment + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3.9 + +[options] +packages = find: +zip_safe = false +include_package_data = true +python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + zeep>=4.0.0,<5 + +[options.entry_points] +indico.plugins = + vc_vidyo = indico_vc_vidyo.plugin:VidyoPlugin + + + +[pydocstyle] +ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213 diff --git a/vc_vidyo/setup.py b/vc_vidyo/setup.py index ab79b7f..03c7604 100644 --- a/vc_vidyo/setup.py +++ b/vc_vidyo/setup.py @@ -5,30 +5,7 @@ # them and/or modify them under the terms of the MIT License; # see the LICENSE file for more details. -from setuptools import find_packages, setup +from setuptools import setup -setup( - name='indico-plugin-vc-vidyo', - version='3.0-dev', - description='Vidyo video-conferencing plugin for Indico', - url='https://github.com/indico/indico-plugins', - license='MIT', - author='Indico Team', - author_email='indico-team@cern.ch', - packages=find_packages(), - zip_safe=False, - include_package_data=True, - install_requires=[ - 'indico>=3.0.dev0', - 'zeep>=4.0.0,<5', - ], - python_requires='~=3.9', - classifiers=[ - 'Environment :: Plugins', - 'Environment :: Web Environment', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.9' - ], - entry_points={'indico.plugins': {'vc_vidyo = indico_vc_vidyo.plugin:VidyoPlugin'}} -) +setup() diff --git a/vc_zoom/setup.cfg b/vc_zoom/setup.cfg index fbc9b4e..5a84d2c 100644 --- a/vc_zoom/setup.cfg +++ b/vc_zoom/setup.cfg @@ -1,5 +1,6 @@ [metadata] name = indico-plugin-vc-zoom +version = 3.0-dev description = Zoom video-conferencing plugin for Indico long_description = file: README.md long_description_content_type = text/markdown; charset=UTF-8; variant=CommonMark @@ -18,6 +19,9 @@ packages = find: zip_safe = false include_package_data = true python_requires = ~=3.9 +install_requires = + indico>=3.0.dev0 + PyJWT>=2.0.0,<3 [options.entry_points] indico.plugins = diff --git a/vc_zoom/setup.py b/vc_zoom/setup.py index 9486308..f9bbc9a 100644 --- a/vc_zoom/setup.py +++ b/vc_zoom/setup.py @@ -9,14 +9,4 @@ 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>=2.0.0,<3' - ], -) +setup()