Move metadata to setup.cfg

related to indico/indico#4680
This commit is contained in:
Adrian Moennich 2021-01-20 16:08:43 +01:00
parent b3abd4f104
commit baad04bd4a
24 changed files with 362 additions and 256 deletions

30
livesync/setup.cfg Normal file
View File

@ -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

View File

@ -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()

31
livesync_debug/setup.cfg Normal file
View File

@ -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

View File

@ -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()

30
payment_manual/setup.cfg Normal file
View File

@ -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

View File

@ -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()

30
payment_paypal/setup.cfg Normal file
View File

@ -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

View File

@ -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()

30
piwik/setup.cfg Normal file
View File

@ -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

View File

@ -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()

31
previewer_code/setup.cfg Normal file
View File

@ -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

View File

@ -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()

View File

@ -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

View File

@ -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()

31
storage_s3/setup.cfg Normal file
View File

@ -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

View File

@ -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()

30
ursh/setup.cfg Normal file
View File

@ -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

View File

@ -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()

30
vc_dummy/setup.cfg Normal file
View File

@ -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

View File

@ -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()

31
vc_vidyo/setup.cfg Normal file
View File

@ -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

View File

@ -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()

View File

@ -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 =

View File

@ -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()