mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
Bump versions to 3.0-dev
This commit is contained in:
parent
4b0a558b01
commit
9d1c6268a0
@ -29,19 +29,20 @@ extras_require = {}
|
||||
|
||||
setup(
|
||||
name='indico-plugins',
|
||||
version='2.3',
|
||||
version='3.0-dev',
|
||||
description='A meta-package containing the official Indico plugins',
|
||||
url='https://github.com/indico/indico-plugins',
|
||||
license='MIT',
|
||||
author='Indico Team',
|
||||
author_email='indico-team@cern.ch',
|
||||
zip_safe=False,
|
||||
install_requires=['indico>=2.3.dev0'] + plugins_require,
|
||||
install_requires=['indico>=3.0.dev0', *plugins_require],
|
||||
python_requires='~=3.9',
|
||||
extras_require=extras_require,
|
||||
classifiers=[
|
||||
'Environment :: Plugins',
|
||||
'Environment :: Web Environment',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
]
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='indico-plugin-livesync',
|
||||
version='2.3',
|
||||
version='3.0-dev',
|
||||
description='Framework for pushing Indico event data to external services',
|
||||
url='https://github.com/indico/indico-plugins',
|
||||
license='MIT',
|
||||
@ -21,14 +21,13 @@ setup(
|
||||
packages=find_packages(),
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'indico>=2.3.dev0'
|
||||
],
|
||||
install_requires=['indico>=3.0.dev0'],
|
||||
python_requires='~=3.9',
|
||||
classifiers=[
|
||||
'Environment :: Plugins',
|
||||
'Environment :: Web Environment',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 2.7'
|
||||
'Programming Language :: Python :: 3.9'
|
||||
],
|
||||
entry_points={'indico.plugins': {'livesync = indico_livesync.plugin:LiveSyncPlugin'}}
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='indico-plugin-livesync-debug',
|
||||
version='1.0',
|
||||
version='3.0-dev',
|
||||
description='Debug target for the Indico LiveSync plugin',
|
||||
url='https://github.com/indico/indico-plugins',
|
||||
license='MIT',
|
||||
@ -22,14 +22,15 @@ setup(
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'indico>=2.0',
|
||||
'indico-plugin-livesync>=1.0'
|
||||
'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 :: 2.7'
|
||||
'Programming Language :: Python :: 3.9'
|
||||
],
|
||||
entry_points={'indico.plugins': {'livesync_debug = indico_livesync_debug.plugin:LiveSyncDebugPlugin'}}
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='indico-plugin-payment-manual',
|
||||
version='1.0.1',
|
||||
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',
|
||||
@ -21,14 +21,13 @@ setup(
|
||||
packages=find_packages(),
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'indico>=2.0'
|
||||
],
|
||||
install_requires=['indico>=3.0.dev0'],
|
||||
python_requires='~=3.9',
|
||||
classifiers=[
|
||||
'Environment :: Plugins',
|
||||
'Environment :: Web Environment',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 2.7'
|
||||
'Programming Language :: Python :: 3.9'
|
||||
],
|
||||
entry_points={'indico.plugins': {'payment_manual = indico_payment_manual.plugin:ManualPaymentPlugin'}}
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='indico-plugin-payment-paypal',
|
||||
version='2.2',
|
||||
version='3.0-dev',
|
||||
description='PayPal payments for Indico event registration fees',
|
||||
url='https://github.com/indico/indico-plugins',
|
||||
license='MIT',
|
||||
@ -21,14 +21,13 @@ setup(
|
||||
packages=find_packages(),
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'indico>=2.2.dev0'
|
||||
],
|
||||
install_requires=['indico>=3.0.dev0'],
|
||||
python_requires='~=3.9',
|
||||
classifiers=[
|
||||
'Environment :: Plugins',
|
||||
'Environment :: Web Environment',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 2.7'
|
||||
'Programming Language :: Python :: 3.9'
|
||||
],
|
||||
entry_points={'indico.plugins': {'payment_paypal = indico_payment_paypal.plugin:PaypalPaymentPlugin'}}
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='indico-plugin-piwik',
|
||||
version='2.3',
|
||||
version='3.0-dev',
|
||||
description='Piwik integration for global and event-specific statistics in Indico',
|
||||
url='https://github.com/indico/indico-plugins',
|
||||
license='MIT',
|
||||
@ -21,14 +21,13 @@ setup(
|
||||
packages=find_packages(),
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'indico>=2.3.dev0'
|
||||
],
|
||||
install_requires=['indico>=3.0.dev0'],
|
||||
python_requires='~=3.9',
|
||||
classifiers=[
|
||||
'Environment :: Plugins',
|
||||
'Environment :: Web Environment',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 2.7'
|
||||
'Programming Language :: Python :: 3.9'
|
||||
],
|
||||
entry_points={'indico.plugins': {'piwik = indico_piwik.plugin:PiwikPlugin'}}
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='indico-plugin-previewer-code',
|
||||
version='1.0',
|
||||
version='3.0-dev',
|
||||
description='Syntax highlighter for code attachments in Indico',
|
||||
url='https://github.com/indico/indico-plugins',
|
||||
license='MIT',
|
||||
@ -22,8 +22,9 @@ setup(
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'indico>=2.0',
|
||||
'pygments'
|
||||
'indico>=3.0.dev0',
|
||||
'pygments',
|
||||
],
|
||||
python_requires='~=3.9',
|
||||
entry_points={'indico.plugins': {'previewer_code = indico_previewer_code:CodePreviewerPlugin'}}
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='indico-plugin-previewer-jupyter',
|
||||
version='1.0',
|
||||
version='3.0-dev',
|
||||
description='Jupyter notebook rendering for attachments in Indico',
|
||||
url='https://github.com/indico/indico-plugins',
|
||||
license='MIT',
|
||||
@ -22,9 +22,9 @@ setup(
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'indico>=2.0',
|
||||
'indico>=3.0.dev0',
|
||||
'nbconvert>=4.0.0',
|
||||
'functools32'
|
||||
],
|
||||
python_requires='~=3.9',
|
||||
entry_points={'indico.plugins': {'previewer_jupyter = indico_previewer_jupyter:JupyterPreviewerPlugin'}}
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='indico-plugin-storage-s3',
|
||||
version='2.3.2',
|
||||
version='3.0-dev',
|
||||
description='S3 storage backend for Indico',
|
||||
url='https://github.com/indico/indico-plugins',
|
||||
license='MIT',
|
||||
@ -22,14 +22,15 @@ setup(
|
||||
zip_safe=False,
|
||||
platforms='any',
|
||||
install_requires=[
|
||||
'indico>=2.3.dev0',
|
||||
'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 :: 2.7'
|
||||
'Programming Language :: Python :: 3.9'
|
||||
],
|
||||
entry_points={'indico.plugins': {'storage_s3 = indico_storage_s3.plugin:S3StoragePlugin'}}
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='indico-plugin-ursh',
|
||||
version='2.3',
|
||||
version='3.0-dev',
|
||||
description='URL shortening service for Indico',
|
||||
url='https://github.com/indico/indico-plugins',
|
||||
license='MIT',
|
||||
@ -21,14 +21,13 @@ setup(
|
||||
packages=find_packages(),
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'indico>=2.3.dev0',
|
||||
],
|
||||
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 :: 2.7'
|
||||
'Programming Language :: Python :: 3.9'
|
||||
],
|
||||
entry_points={'indico.plugins': {'ursh = indico_ursh.plugin:UrshPlugin'}}
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='indico-plugin-vc-dummy',
|
||||
version='1.0',
|
||||
version='3.0-dev',
|
||||
description='Dummy/example video-conferencing plugin for Indico',
|
||||
url='https://github.com/indico/indico-plugins',
|
||||
license='MIT',
|
||||
@ -21,14 +21,13 @@ setup(
|
||||
packages=find_packages(),
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'indico>=2.0'
|
||||
],
|
||||
install_requires=['indico>=3.0.dev0'],
|
||||
python_requires='~=3.9',
|
||||
classifiers=[
|
||||
'Environment :: Plugins',
|
||||
'Environment :: Web Environment',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 2.7'
|
||||
'Programming Language :: Python :: 3.9'
|
||||
],
|
||||
entry_points={'indico.plugins': {'vc_dummy = indico_vc_dummy.plugin:DummyPlugin'}}
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='indico-plugin-vc-vidyo',
|
||||
version='2.3.1',
|
||||
version='3.0-dev',
|
||||
description='Vidyo video-conferencing plugin for Indico',
|
||||
url='https://github.com/indico/indico-plugins',
|
||||
license='MIT',
|
||||
@ -22,14 +22,15 @@ setup(
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'indico>=2.3.2.dev0',
|
||||
'zeep'
|
||||
'indico>=3.0.dev0',
|
||||
'zeep',
|
||||
],
|
||||
python_requires='~=3.9',
|
||||
classifiers=[
|
||||
'Environment :: Plugins',
|
||||
'Environment :: Web Environment',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 2.7'
|
||||
'Programming Language :: Python :: 3.9'
|
||||
],
|
||||
entry_points={'indico.plugins': {'vc_vidyo = indico_vc_vidyo.plugin:VidyoPlugin'}}
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user