mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
First commit
This commit is contained in:
commit
8908c43b23
8
piwik/indico_statistics/__init__.py
Normal file
8
piwik/indico_statistics/__init__.py
Normal file
@ -0,0 +1,8 @@
|
||||
from indico.core.plugins import IndicoPlugin
|
||||
|
||||
|
||||
class StatisticsPlugin(IndicoPlugin):
|
||||
"""Statistic plugin
|
||||
|
||||
A plugin to export statistic of Indico.
|
||||
"""
|
||||
15
piwik/setup.py
Normal file
15
piwik/setup.py
Normal file
@ -0,0 +1,15 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
setup(
|
||||
name='indico_statistics',
|
||||
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': {'statistics = indico_statistics:StatisticsPlugin'}}
|
||||
)
|
||||
Loading…
x
Reference in New Issue
Block a user