Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
msiemens committed Oct 8, 2013
2 parents 86a22c5 + 786182b commit b634656
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 23 deletions.
7 changes: 6 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,13 @@ The original ``git-up`` has been written by aanand:
Changelog
---------

v1.1.2 (*2013-10-08*)
~~~~~~~~~~~~~~~~~~~~~

- Fixed problems with the dependency declaration.

v1.1.1 (*2013-10-07*)
~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~

- Fix for `#7 <https://github.com/msiemens/PyGitUp/issues/6>`__
(AttributeError: 'GitUp' object has no attribute 'git') introduced by
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GitPython==0.3.2.RC1
colorama==0.2.7
colorama==0.2.4,==0.2.7
termcolor==1.1.0
docopt==0.6.1
docopt==0.6.1
43 changes: 23 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,40 @@
from setuptools import setup, find_packages

setup(
name = "git-up",
version = "1.1.1",
packages = find_packages(),
scripts = ['PyGitUp/gitup.py'],
install_requires = ['GitPython==0.3.2.RC1', 'colorama==0.2.5', 'termcolor==1.1.0', 'docopt==0.6.1'],
name="git-up",
version="1.1.2",
packages=find_packages(exclude=["tests"]),
scripts=['PyGitUp/gitup.py'],
install_requires=['GitPython==0.3.2.RC1', 'colorama==0.2.4,==0.2.7',
'termcolor==1.1.0', 'docopt==0.6.1'],

# Tests
test_suite="nose.collector",
tests_require = 'nose',
tests_require='nose',

entry_points = {
# Executable
entry_points={
'console_scripts': [
'git-up = gitup:run'
]
},

package_data = {
'PyGitUp': ['check-bundler.rb']
# Additional data
package_data={
'PyGitUp': ['check-bundler.rb'],
'': ['README.rst', 'LICENCE']
},

zip_safe = False,
zip_safe=False,

# metadata for upload to PyPI
author = "Markus Siemens",
author_email = "[email protected]",
description = "A python implementation of 'git up'",
license = "MIT",
keywords = "git git-up",
url = "https://github.com/msiemens/PyGitUp",
classifiers = [
# Metadata
author="Markus Siemens",
author_email="[email protected]",
description="A python implementation of 'git up'",
license="MIT",
keywords="git git-up",
url="https://github.com/msiemens/PyGitUp",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
Expand All @@ -40,6 +44,5 @@
"Topic :: Utilities"
],

long_description = open('README.rst').read()
# could also include download_url etc.
long_description=open('README.rst').read()
)

0 comments on commit b634656

Please sign in to comment.