Skip to content

Commit

Permalink
mirror requirements.txt in setup.py to make pypi-distributable
Browse files Browse the repository at this point in the history
  • Loading branch information
kba committed Apr 17, 2018
1 parent a1a1cf9 commit 84c5eb1
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Change Log
==========

Versioned according to [Semantic Versioning](http://semver.org/).

## TODO

## [unreleased]
Added
Changed
Fixed
Removed

## [0.0.2] - 2018-04-17

Fixed
* setup.py install_requires mirrors requirements.txt

## [0.0.1] - 2018-04-17

Initial Release

<!-- link-labels -->
[0.0.2]: ../../compare/v0.0.1...v0.0.2
[0.0.1]: ../../compare/HEAD...v0.0.1
14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='ocrd',
version='0.0.1',
version='0.0.2',
description='OCR-D framework',
long_description=README,
author='Kay-Michael Würzner, Konstantin Baierer',
Expand All @@ -17,6 +17,18 @@
license='Apache License 2.0',
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
install_requires=[
'Flask',
'Pillow',
'click',
'jsonschema',
'lxml',
'numpy',
'ocrd-pyexiftool',
'opencv-python',
'pyyaml',
'requests',
],
package_data={
'': ['*.json', '*.yml', '*.yaml'],
},
Expand Down

0 comments on commit 84c5eb1

Please sign in to comment.