Skip to content

Commit

Permalink
Merge branch 'release/1.0.1-rc1'
Browse files Browse the repository at this point in the history
  • Loading branch information
belidzs committed May 28, 2020
2 parents 6dfb9a9 + 2fb329a commit b696424
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion beancount_mnb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion publish.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
rm -rf dist/ && python setup.py sdist bdist_wheel && twine upload dist/*
rm -rf dist/ build/ beancount_mnb.egg-info/ && python setup.py sdist bdist_wheel && twine upload dist/*
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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",
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',
keywords="beancount importer mnb currency",
url="https://github.com/belidzs/beancount_mnb",
author="Balázs Keresztury",
Expand Down

0 comments on commit b696424

Please sign in to comment.