Merge branch 'gui'
[munter.git] / setup.py
index f30ca7059c2f2a82eb391efa232aac1afda149c0..6d960ec0871379548ebed3e266d57cff7b565f03 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ from setuptools import setup
 
 cur_dir = os.path.dirname(__file__)
 version = re.search(
-    '^__version__\s*=\s*"(.*)"',
+    "^__version__\s*=\s*'(.*)'",
     open(os.path.join(cur_dir, 'munter/__init__.py')).read(),
     re.M
     ).group(1)
@@ -25,6 +25,9 @@ setup(
     author='Alexander Vasarab',
     author_email='alexander@wylark.com',
     url='https://wylark.com/munter',
+    project_urls={
+        'Source Code': 'https://wylark.com/git/munter.git'
+    },
     packages=['munter'],
     package_dir={'munter': 'munter'},
     entry_points={'console_scripts': ['munter = munter.munter:main']},