forked from sbrunner/deskew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 922 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='deskew',
version='0.10.0',
description='Skew detection and correction in images containing text',
long_description="""Skew detection and correction in images containing text
Homepage: https://github.com/sbrunner/deskew""",
license='MIT',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
],
author='Stéphane Brunner',
author_email='[email protected]',
url='https://github.com/sbrunner/deskew',
packages=find_packages(exclude=['tests.*']),
install_requires=['numpy', 'scikit-image!=0.15.0'],
entry_points={
'console_scripts': [
'deskew = deskew.cli:main',
],
},
)