Skip to content

Bump version to 0.0.6 #7

New issue

Have a question about this project? No Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “No Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? No Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 16 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/usr/bin/python

try:
from setuptools import setup, Extension
from setuptools import setup
has_setuptools = True
except ImportError:
from distutils.core import setup, Extension
from distutils.core import setup
has_setuptools = False

version_string = '0.0.5'
version_string = '0.0.6'


setup_kwargs = {}
Expand All @@ -22,17 +22,16 @@
]

setup(name='giturlparse.py',
description='A Git URL parsing module (supports parsing and rewriting)',
keywords='git url parse ssh github bitbucket',
version=version_string,
url='https://github.com/FriendCode/giturlparse.py',
license='Apache v2',
author="Aaron O'Mullan",
author_email='aaron@friendco.de',
long_description="""
""",
packages=['giturlparse', 'giturlparse.platforms'],
install_requires=install_requires,
dependency_links=dependency_links,
**setup_kwargs
)
description='A Git URL parsing module (supports parsing and rewriting)',
keywords='git url parse ssh github bitbucket',
version=version_string,
url='https://github.com/FriendCode/giturlparse.py',
license='Apache v2',
author="Aaron O'Mullan",
author_email='aaron@friendco.de',
long_description="""
""",
packages=['giturlparse', 'giturlparse.platforms'],
install_requires=install_requires,
dependency_links=dependency_links,
**setup_kwargs)