mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-20 02:26:12 +00:00
Initial commit
This commit is contained in:
commit
aefdca78e1
6
importer/.gitignore
vendored
Normal file
6
importer/.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
.idea/
|
||||
.webassets-cache/
|
||||
*.min.css
|
||||
*.min.js
|
||||
*.pyc
|
||||
*.egg-info
|
||||
5
importer/indico_importer/__init__.py
Normal file
5
importer/indico_importer/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
from indico.core.plugins import IndicoPlugin
|
||||
|
||||
|
||||
class IndicoImporter(IndicoPlugin):
|
||||
pass
|
||||
15
importer/setup.py
Normal file
15
importer/setup.py
Normal file
@ -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'}}
|
||||
)
|
||||
Loading…
x
Reference in New Issue
Block a user