Skip to content
This repository was archived by the owner on Feb 19, 2024. It is now read-only.

Commit 3dddd94

Browse files
committed
📦 v0.1.0
1 parent da70018 commit 3dddd94

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Versioned according to [Semantic Versioning](http://semver.org/).
44

55
## Unreleased
66

7+
# [0.1.0] - 2020-08-21
8+
79
Changed:
810

911
* merge upstream, #2

ocrd_typegroups_classifier/ocrd-tool.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.2",
2+
"version": "0.1.0",
33
"git_url": "https://github.com/seuretm/ocrd_typegroups_classifier",
44
"tools": {
55
"ocrd-typegroups-classifier": {

setup.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,18 @@
55

66
with codecs.open('README.md', encoding='utf-8') as f:
77
README = f.read()
8+
with open('./ocrd-tool.json', 'r') as f:
9+
version = json.load(f)['version']
810

911
setup(
1012
name='ocrd_typegroups_classifier',
11-
version='0.0.2',
13+
version=version,
1214
description='Typegroups classifier for OCR',
1315
long_description=README,
1416
long_description_content_type='text/markdown',
1517
author='Matthias Seuret, Konstantin Baierer',
1618
author_email='seuretm@users.noreply.github.com',
17-
url='https://github.com/seuretm/ocrd_typegroups_classifier',
19+
url='https://github.com/OCR-D/ocrd_typegroups_classifier',
1820
license='Apache License 2.0',
1921
packages=find_packages(exclude=('tests', 'docs')),
2022
include_package_data=True,

0 commit comments

Comments
 (0)