-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (29 loc) · 958 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
'''
Created on Mar 9, 2018
@author: pedersen
'''
from __future__ import unicode_literals
from setuptools import find_packages, setup
setup(
name='indico-mlz-export',
url='https://github.com/bpedersen2/mlz-indico-export',
license='MIT',
author='MLZ Indico Team',
author_email='bjoern.pedersen@frm2.tum.de',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
use_scm_version={"write_to":"indico_mlz_export/version.py",
"local_scheme":"node-and-timestamp"},
setup_requires = ["setuptools>=39", "setuptools_scm[toml]>=3.4"],
install_requires=['indico>=2.3.0'],
entry_points={
'indico.plugins': {'mlz_export = indico_mlz_export.plugin:MLZExporterPlugin'},
},
classifiers=[
'Environment :: Plugins',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
)