📦 v0.0.2

This commit is contained in:
Konstantin Baierer 2021-05-04 18:12:21 +02:00
parent c4b2c71e68
commit 26283c6a3b
3 changed files with 13 additions and 2 deletions

View file

@ -1,10 +1,13 @@
from setuptools import setup, find_packages
from json import load
install_requires = open('requirements.txt').read().split('\n')
with open('ocrd-tool.json', 'r', encoding='utf-8') as f:
version = load(f)['version']
setup(
name='eynollah',
version='0.0.1',
version=version,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Vahid Rezanezhad',