-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 1.15 KB
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
install_requires=['spreads'],
name='spreadsplug_createplugin',
provides=['spreadsplug_createplugin'],
version='0.1',
author='Matti Kariluoma <[email protected]>',
author_email='[email protected]',
description='Spreads (http://github.com/DIYBookScanner/spreads http://spreads.readthedocs.org) plugin',
license='MIT',
classifiers=['Environment :: Console',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: POSIX',
'Topic :: Multimedia :: Graphics :: Capture',
'Topic :: Multimedia :: Graphics :: Graphics Conversion'],
keywords='spreads spreadsplugin',
packages=['spreadsplug_createplugin'],
package_dir={'spreadsplug_createplugin': 'spreadsplug_createplugin'},
package_data={'spreadsplug_createplugin': ['template/*.in', 'template/module/*.in']},
entry_points={u'spreadsplug.hooks': [u'CreatePlugin = spreadsplug_createplugin.CreatePlugin:CreatePlugin']},
)