mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-13 07:29:39 +00:00
54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
# This file is part of the Indico plugins.
|
|
# Copyright (C) 2002 - 2019 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-chat==2.2',
|
|
'indico-plugin-importer==2.2',
|
|
'indico-plugin-importer-invenio==2.2',
|
|
'indico-plugin-livesync==2.0',
|
|
'indico-plugin-livesync-invenio==1.0',
|
|
'indico-plugin-payment-manual==1.0.1',
|
|
'indico-plugin-payment-paypal==2.2',
|
|
'indico-plugin-piwik==2.2',
|
|
'indico-plugin-previewer-code==1.0',
|
|
'indico-plugin-previewer-jupyter==1.0',
|
|
'indico-plugin-search==2.2',
|
|
'indico-plugin-storage-s3==2.0.3',
|
|
'indico-plugin-vc-vidyo==2.2',
|
|
]
|
|
extras_require = {
|
|
'xrootd': ['indico-plugin-storage-xrootd==1.0'],
|
|
}
|
|
# END GENERATED REQUIREMENTS
|
|
|
|
|
|
setup(
|
|
name='indico-plugins',
|
|
version='2.2',
|
|
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.2.dev0'] + plugins_require,
|
|
extras_require=extras_require,
|
|
classifiers=[
|
|
'Environment :: Plugins',
|
|
'Environment :: Web Environment',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 2.7',
|
|
]
|
|
)
|