mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-13 07:29:39 +00:00
51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
# This file is part of the Indico plugins.
|
|
# Copyright (C) 2002 - 2021 CERN
|
|
#
|
|
# 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
|
|
|
|
|
|
# Do not modify this block manually - use `update-meta.py` instead!
|
|
# BEGIN GENERATED REQUIREMENTS
|
|
plugins_require = [
|
|
'indico-plugin-livesync>=2.3,<2.4.dev0',
|
|
'indico-plugin-payment-manual>=1.0.1,<2.4.dev0',
|
|
'indico-plugin-payment-paypal>=2.2,<2.4.dev0',
|
|
'indico-plugin-piwik>=2.3,<2.4.dev0',
|
|
'indico-plugin-previewer-code>=1.0,<2.4.dev0',
|
|
'indico-plugin-previewer-jupyter>=1.0,<2.4.dev0',
|
|
'indico-plugin-search>=2.3,<2.4.dev0',
|
|
'indico-plugin-storage-s3>=2.3,<2.4.dev0',
|
|
'indico-plugin-ursh>=2.3,<2.4.dev0',
|
|
'indico-plugin-vc-vidyo>=2.3,<2.4.dev0',
|
|
]
|
|
extras_require = {
|
|
'importer': ['indico-plugin-importer-invenio>=2.2,<2.4.dev0', 'indico-plugin-importer>=2.2,<2.4.dev0'],
|
|
}
|
|
# END GENERATED REQUIREMENTS
|
|
|
|
|
|
setup(
|
|
name='indico-plugins',
|
|
version='2.3',
|
|
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,
|
|
extras_require=extras_require,
|
|
classifiers=[
|
|
'Environment :: Plugins',
|
|
'Environment :: Web Environment',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 2.7',
|
|
]
|
|
)
|