Browse Source

Fix project urls not being a dictionary

Peter Justin 7 years ago
parent
commit
04069be1df
1 changed files with 3 additions and 3 deletions
  1. 3 3
      setup.py

+ 3 - 3
setup.py

@@ -48,9 +48,9 @@ setup(
     version="2.0.0.dev0",
     url='https://flaskbb.org',
     project_urls={
-        ('Documentation', 'https://flaskbb.readthedocs.io/en/latest/'),
-        ('Code', 'https://github.com/flaskbb/flaskbb'),
-        ('Issue Tracker', 'https://github.com/flaskbb/flaskbb'),
+        'Documentation': 'https://flaskbb.readthedocs.io/en/latest/',
+        'Code': 'https://github.com/flaskbb/flaskbb',
+        'Issue Tracker': 'https://github.com/flaskbb/flaskbb',
     },
     license='BSD',
     author='Peter Justin',