-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (26 loc) · 945 Bytes
/
setup.py
File metadata and controls
26 lines (26 loc) · 945 Bytes
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
from setuptools import setup
setup(
name='scanman',
packages=['scanman'],
version='0.8',
description='A ScanSnap manager for Raspbery Pi',
author='Olivier Poitrey',
author_email='rs@rhapsodyk.net',
url='https://github.com/rs/scanman',
download_url='https://github.com/rs/scanman/tarball/0.8',
install_requires=['kivy', 'python-sane', 'img2pdf', 'pyyaml'],
package_data={'scanman': ['*.kv']},
entry_points={'console_scripts': [
'scanman = scanman.main:main',
]},
keywords=['scan', 'scansnap', 'sane', 'raspberry', 'kivy', 'paperless', 'office'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console :: Framebuffer',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Topic :: Office/Business',
]
)