Commit 63956cb 1 parent 76fe767 commit 63956cb Copy full SHA for 63956cb
File tree 2 files changed +28
-3
lines changed
2 files changed +28
-3
lines changed Original file line number Diff line number Diff line change
1
+ [metadata]
2
+ description-file = README.md
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
3
+ VERSION = '1.0.0'
4
+
3
5
import glob
4
6
from setuptools import setup
5
7
setup (
6
- name = "hocr_tools" ,
7
- version = "0.1" ,
8
- author = 'Thomas Breuel' ,
8
+ name = "hocr-tools" ,
9
+ version = VERSION ,
9
10
description = 'Advanced tools for hOCR integration' ,
11
+ author = 'Thomas Breuel' ,
12
+ maintainer = 'Konstantin Baierer' ,
13
+ maintainer_email = '[email protected] ' ,
14
+ url = 'https://github.com/tmbdev/hocr-tools' ,
15
+ download_url = 'https://github.com/tmbdev/hocr-tools/tarball/v' + VERSION ,
16
+ classifiers = [
17
+ 'Development Status :: 5 - Production/Stable' ,
18
+ 'Environment :: Console' ,
19
+ 'Intended Audience :: End Users/Desktop' ,
20
+ 'License :: OSI Approved :: Apache Software License' ,
21
+ 'Operating System :: OS Independent' ,
22
+ 'Programming Language :: Python :: 2.7' ,
23
+ 'Topic :: Multimedia :: Graphics :: Graphics Conversion' ,
24
+ 'Topic :: Scientific/Engineering :: Image Recognition' ,
25
+ 'Topic :: Utilities' ,
26
+ ],
27
+ install_requires = [
28
+ 'Pillow' ,
29
+ 'lxml' ,
30
+ 'reportlab' ,
31
+ 'matplotlib' ,
32
+ ],
10
33
scripts = [c for c in glob .glob ("hocr-*" )]
11
34
)
You can’t perform that action at this time.
0 commit comments