From 9a05c824fec21aaf3a019635977076fb3ea27775 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Keresztury?= Date: Thu, 28 May 2020 18:17:33 +0200 Subject: [PATCH 1/3] =?UTF-8?q?README.md=20beolvas=C3=A1sa=20PyPi=20metaad?= =?UTF-8?q?atokhoz?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup.py b/setup.py index 32eaf84..c01c524 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,17 @@ from setuptools import setup +# read the contents of your README file +from os import path +this_directory = path.abspath(path.dirname(__file__)) +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: + long_description = f.read() + setup( name="beancount_mnb", version="1.0.1-rc0", description="Az MNB hivatalos középárfolyamainak letöltését megvalósító beancount plugin.", + long_description=long_description, + long_description_content_type='text/markdown', keywords="beancount importer mnb currency", url="https://github.com/belidzs/beancount_mnb", author="Balázs Keresztury", From bd3095b3db76d7a400900fc6564cd5ea5a6efa33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Keresztury?= Date: Thu, 28 May 2020 18:19:59 +0200 Subject: [PATCH 2/3] publish.sh fix --- publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publish.sh b/publish.sh index cdc9650..9a4750e 100644 --- a/publish.sh +++ b/publish.sh @@ -1,2 +1,2 @@ #!/bin/sh -rm -rf dist/ && python setup.py sdist bdist_wheel && twine upload dist/* \ No newline at end of file +rm -rf dist/ build/ beancount_mnb.egg-info/ && python setup.py sdist bdist_wheel && twine upload dist/* \ No newline at end of file From 2fb329a5370955a5de294fda0cb1bb7150f9c470 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Keresztury?= Date: Thu, 28 May 2020 18:20:45 +0200 Subject: [PATCH 3/3] =?UTF-8?q?Verzi=C3=B3=20bump?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- beancount_mnb/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/beancount_mnb/__init__.py b/beancount_mnb/__init__.py index bd4c265..26c78b2 100644 --- a/beancount_mnb/__init__.py +++ b/beancount_mnb/__init__.py @@ -5,7 +5,7 @@ from zeep import Client from lxml import etree -__version__ = '1.0.1-rc0' +__version__ = '1.0.1-rc1' class Source(source.Source): diff --git a/setup.py b/setup.py index c01c524..6e9752c 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="beancount_mnb", - version="1.0.1-rc0", + version="1.0.1-rc1", description="Az MNB hivatalos középárfolyamainak letöltését megvalósító beancount plugin.", long_description=long_description, long_description_content_type='text/markdown',