mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-13 07:29:39 +00:00
36 lines
1.1 KiB
Python
36 lines
1.1 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 find_packages, setup
|
|
|
|
|
|
setup(
|
|
name='indico-plugin-livesync-debug',
|
|
version='1.0',
|
|
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>=2.0',
|
|
'indico-plugin-livesync>=1.0'
|
|
],
|
|
classifiers=[
|
|
'Environment :: Plugins',
|
|
'Environment :: Web Environment',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 2.7'
|
|
],
|
|
entry_points={'indico.plugins': {'livesync_debug = indico_livesync_debug.plugin:LiveSyncDebugPlugin'}}
|
|
)
|