forked from sbrunner/scan-to-paperless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 1 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
28
29
30
31
32
33
34
35
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, 'README.md')) as f:
README = f.read()
with open(os.path.join(HERE, 'requirements.txt')) as f:
install_requires = f.read().splitlines()
setup(
name='scan-to-paperless',
version='1.0.0',
description='Tool to scan and process documents to palerless',
long_description=README,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
author='Stéphane Brunner',
author_email='[email protected]',
url='https://hub.docker.com/r/sbrunner/scan-to-paperless/',
packages=find_packages(exclude=['tests.*']),
install_requires=install_requires,
entry_points={
'console_scripts': [
'scan = scan_to_paperless.scan:main',
'scan-process-status = scan_to_paperless.scan_process_status:main',
],
},
)