Bump version to 0.1.1

This commit is contained in:
Julien Palard 2018-11-10 15:42:16 +01:00
parent 54fac184df
commit 8037fed5ae
2 changed files with 4 additions and 9 deletions

View File

@ -2,4 +2,4 @@
__author__ = """Julien Palard"""
__email__ = "julien@palard.fr"
__version__ = "0.1.0"
__version__ = "0.1.1"

View File

@ -1,16 +1,11 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.rst") as readme_file:
readme = readme_file.read()
requirements = ["tqdm"]
setup(
name="poindent",
version="0.1.0",
version="0.1.1",
description="Find an properly reindent .po files.",
long_description=readme,
author="Julien Palard",
@ -20,7 +15,7 @@ setup(
package_dir={"poindent": "poindent"},
entry_points={"console_scripts": ["poindent=poindent.poindent:main"]},
include_package_data=True,
install_requires=requirements,
install_requires=["tqdm"],
license="MIT license",
zip_safe=False,
keywords="poindent",
@ -30,8 +25,8 @@ setup(
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)