summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2012-08-24 07:52:29 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2012-08-24 07:52:29 +0200
commit0a877102119d4738369c1464107123f3f9e6978d (patch)
treea79f506e2c805423f021efad36b4a7ac506697a4 /setup.py
parent61bf224281f2e7a8d51acb75c9a9482a08b8870b (diff)
downloadsqlparse-0a877102119d4738369c1464107123f3f9e6978d.tar.gz
Update links in setup.py, thanks to @bulkanevcimen.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 0439030..0355519 100755
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ LONG_DESCRIPTION = """
``sqlparse`` is a non-validating SQL parser module.
It provides support for parsing, splitting and formatting SQL statements.
-Visit the `project page <http://code.google.com/p/python-sqlparse/>`_ for
+Visit the `project page <https://github.com/andialbrecht/sqlparse>`_ for
additional information and documentation.
**Example Usage**
@@ -72,8 +72,10 @@ Parsing::
"""
-DOWNLOAD_URL = ('http://python-sqlparse.googlecode.com/files/'
- 'sqlparse-%s.tar.gz' % sqlparse.__version__)
+DOWNLOAD_URL = (
+ 'https://github.com/downloads/andialbrecht/sqlparse/'
+ 'sqlparse-%s.tar.gz' % sqlparse.__version__
+)
setup(
@@ -86,7 +88,7 @@ setup(
download_url=DOWNLOAD_URL,
long_description=LONG_DESCRIPTION,
license='BSD',
- url='http://python-sqlparse.googlecode.com/',
+ url='https://github.com/andialbrecht/sqlparse',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',