Skip to content

Commit

Permalink
Setup for release on PyPI #44
Browse files Browse the repository at this point in the history
  • Loading branch information
kba authored and zuphilip committed Sep 1, 2016
1 parent 76fe767 commit 63956cb
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
29 changes: 26 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,34 @@
#!/usr/bin/env python

VERSION = '1.0.0'

import glob
from setuptools import setup
setup(
name = "hocr_tools",
version = "0.1",
author = 'Thomas Breuel',
name = "hocr-tools",
version = VERSION,
description = 'Advanced tools for hOCR integration',
author = 'Thomas Breuel',
maintainer = 'Konstantin Baierer',
maintainer_email = '[email protected]',
url = 'https://github.com/tmbdev/hocr-tools',
download_url = 'https://github.com/tmbdev/hocr-tools/tarball/v' + VERSION,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Utilities',
],
install_requires = [
'Pillow',
'lxml',
'reportlab',
'matplotlib',
],
scripts = [c for c in glob.glob("hocr-*")]
)

0 comments on commit 63956cb

Please sign in to comment.