Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe Gonzalez committed Feb 24, 2020
1 parent ad2f0c3 commit 2d384a9
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
import setuptools

__VERSION__ = '1.1.5'
__VERSION__ = '1.2.0'

with open("README.md", "r") as fh:
with open('README.md', 'r') as fh:
long_description = fh.read()

setuptools.setup(
name="AX3 model extras",
name='AX3 model extras',
version=__VERSION__,
author="Axiacore",
author_email="[email protected]",
description="Extras for AX3 models",
author='Axiacore',
author_email='[email protected]',
description='Extras for AX3 models',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Axiacore/ax3-model-extras",
long_description_content_type='text/markdown',
url='https://github.com/Axiacore/ax3-model-extras',
packages=setuptools.find_packages(),
install_requires=['python-resize-image'],
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)

0 comments on commit 2d384a9

Please sign in to comment.