Prepare for v0.3.0

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2019-03-07 18:35:02 +09:00
parent 1e58758ae2
commit f21a933c42
3 changed files with 42 additions and 25 deletions

View File

@@ -7,13 +7,13 @@ from setuptools import setup
def readme():
with io.open(os.path.join(os.path.dirname(__file__), 'README.rst'), mode="r", encoding="UTF-8") as f:
return f.read()
with io.open(os.path.join(os.path.dirname(__file__), 'README.rst'), mode="r", encoding="UTF-8") as readmef:
return readmef.read()
setup(name='aqtinstall',
version='0.2.0',
description='Another unoffical Qt installer',
version='0.3.0',
description='Another unofficial Qt installer',
url='http://github.com/miurahr/aqtinstall',
license='MIT',
long_description=readme(),