diff --git a/README.rst b/README.rst index bbc9ba5..843250e 100644 --- a/README.rst +++ b/README.rst @@ -167,6 +167,12 @@ The original ``git-up`` has been written by aanand: Changelog --------- +v1.6.1 (*2018-12-12*) +~~~~~~~~~~~~~~~~~~~~~ + +- Upgrade to click>=7.0.0. Thanks `@Chronial `_ + for `Pull Request #87 `_. + v1.6.0 (*2018-10-26*) ~~~~~~~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 33131e2..957b0d0 100644 --- a/setup.py +++ b/setup.py @@ -1,55 +1,55 @@ -# coding=utf-8 -from setuptools import setup, find_packages - -setup( - name="git-up", - version="1.6.0", - packages=find_packages(), - install_requires=['GitPython>=2.1.8', 'colorama>=0.3.7', - 'termcolor>=1.1.0', 'click>=7.0.0', - 'six>=1.10.0'], - - # Tests - test_suite="nose.collector", - tests_require='nose', - - # Executable - entry_points={ - 'console_scripts': [ - 'git-up = PyGitUp.gitup:run' - ] - }, - - # Additional data - package_data={ - 'PyGitUp': ['check-bundler.rb'], - '': ['README.rst', 'LICENCE'] - }, - - zip_safe=False, - - # Metadata - author="Markus Siemens", - author_email="markus@m-siemens.de", - description="A python implementation of 'git up'", - license="MIT", - keywords="git git-up", - url="https://github.com/msiemens/PyGitUp", - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Environment :: Console", - "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Topic :: Software Development :: Version Control", - "Topic :: Utilities" - ], - - long_description=open('README.rst').read() -) +# coding=utf-8 +from setuptools import setup, find_packages + +setup( + name="git-up", + version="1.6.1", + packages=find_packages(), + install_requires=['GitPython>=2.1.8', 'colorama>=0.3.7', + 'termcolor>=1.1.0', 'click>=7.0.0', + 'six>=1.10.0'], + + # Tests + test_suite="nose.collector", + tests_require='nose', + + # Executable + entry_points={ + 'console_scripts': [ + 'git-up = PyGitUp.gitup:run' + ] + }, + + # Additional data + package_data={ + 'PyGitUp': ['check-bundler.rb'], + '': ['README.rst', 'LICENCE'] + }, + + zip_safe=False, + + # Metadata + author="Markus Siemens", + author_email="markus@m-siemens.de", + description="A python implementation of 'git up'", + license="MIT", + keywords="git git-up", + url="https://github.com/msiemens/PyGitUp", + python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Environment :: Console", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Topic :: Software Development :: Version Control", + "Topic :: Utilities" + ], + + long_description=open('README.rst').read() +)