mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
16 lines
329 B
Python
16 lines
329 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='indico_piwik',
|
|
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': {'piwik = indico_piwik:PiwikPlugin'}}
|
|
)
|