commit aefdca78e1d86c40a0131547c7504ebc56e1e482 Author: Alejandro Avilés Date: Mon Oct 20 17:26:34 2014 +0200 Initial commit diff --git a/importer/.gitignore b/importer/.gitignore new file mode 100644 index 0000000..4ae66f6 --- /dev/null +++ b/importer/.gitignore @@ -0,0 +1,6 @@ +.idea/ +.webassets-cache/ +*.min.css +*.min.js +*.pyc +*.egg-info diff --git a/importer/indico_importer/__init__.py b/importer/indico_importer/__init__.py new file mode 100644 index 0000000..401bc3d --- /dev/null +++ b/importer/indico_importer/__init__.py @@ -0,0 +1,5 @@ +from indico.core.plugins import IndicoPlugin + + +class IndicoImporter(IndicoPlugin): + pass diff --git a/importer/setup.py b/importer/setup.py new file mode 100644 index 0000000..c324bc7 --- /dev/null +++ b/importer/setup.py @@ -0,0 +1,15 @@ +from setuptools import setup, find_packages + + +setup( + name='indico_importer', + version='0.1', + packages=find_packages(), + zip_safe=False, + include_package_data=True, + platforms='any', + install_requires=[ + 'indico>=1.9.1' + ], + entry_points={'indico.plugins': {'importer = indico_importer:ImporterPlugin'}} +)