-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
33 lines (32 loc) · 893 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
33
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='hocr-parser',
version='0.1',
description='HOCR Specification Python Parser',
author='Athento',
author_email='[email protected]',
url='https://github.com/athento/hocr-parser',
license='Apache 2.0 License',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: OCR'
],
package_dir={'hocr_parser': 'src/hocr_parser'},
packages=find_packages('src'),
dependency_links=[
'bzr+lp:beautifulsoup#egg=beautifulsoup-4.0',
],
install_requires=[
'beautifulsoup4'
],
extras_require={
'test': [
'pytest'
],
},
)