Merge branch 'gui'
[munter.git] / setup.py
index 55047cc489d00f102fdfe145e02096ae3bc02707..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)
@@ -21,10 +21,13 @@ setup(
         'An easy-to-use implementation of the Munter time calculation'
     ),
     long_description=readme,
-    long_description_content_type='text/plain',
+    long_description_content_type='text/markdown',
     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']},