Skip to content
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)