1
0
Fork 0
mirror of https://github.com/mikegerber/ocrd_calamari.git synced 2025-06-09 03:39:55 +02:00

Merge pull request #39 from OCR-D/dont-install-test

setup.py: exclude "test", not "tests", from installation
This commit is contained in:
Mike Gerber 2020-06-04 12:07:03 +02:00 committed by GitHub
commit c6ced9b3e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ setup(
author_email='unixprog@gmail.com, mike.gerber@sbb.spk-berlin.de', author_email='unixprog@gmail.com, mike.gerber@sbb.spk-berlin.de',
url='https://github.com/OCR-D/ocrd_calamari', url='https://github.com/OCR-D/ocrd_calamari',
license='Apache License 2.0', license='Apache License 2.0',
packages=find_packages(exclude=('tests', 'docs')), packages=find_packages(exclude=('test', 'docs')),
install_requires=Path('requirements.txt').read_text().split('\n'), install_requires=Path('requirements.txt').read_text().split('\n'),
package_data={ package_data={
'': ['*.json', '*.yml', '*.yaml'], '': ['*.json', '*.yml', '*.yaml'],