From 84c5eb109195e3dcb3eb484fbbae606c0381923e Mon Sep 17 00:00:00 2001 From: Konstantin Baierer Date: Tue, 17 Apr 2018 17:13:43 +0200 Subject: [PATCH] mirror requirements.txt in setup.py to make pypi-distributable --- CHANGELOG.md | 25 +++++++++++++++++++++++++ setup.py | 14 +++++++++++++- 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..fafd931c0 --- /dev/null +++ b/CHANGELOG.md @@ -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 + + +[0.0.2]: ../../compare/v0.0.1...v0.0.2 +[0.0.1]: ../../compare/HEAD...v0.0.1 diff --git a/setup.py b/setup.py index 751ae7ca0..03020b0e7 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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'], },