mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-18 17:54:47 +00:00
16 lines
341 B
Python
16 lines
341 B
Python
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'}}
|
|
)
|