Skip to content

Commit

Permalink
Add project urls to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiodsf committed Mar 11, 2024
1 parent d3df3ac commit 35264cd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: GPL-3.0-or-later
"""setup.py: setuptools control."""
from setuptools import setup, find_packages
import versioneer
Expand All @@ -7,6 +8,11 @@
with open('README.md', 'rb') as f:
long_descr = f.read().decode('utf-8')

project_urls = {
'Homepage': 'https://requake.seismicsource.org',
'Source': 'https://github.com/SeismicSource/requake',
'Documentation': 'https://requake.readthedocs.io'
}

setup(
name='requake',
Expand All @@ -22,7 +28,8 @@
long_description_content_type='text/markdown',
author='Claudio Satriano',
author_email='[email protected]',
url='http://www.ipgp.fr/~satriano',
url=project_urls['Homepage'],
project_urls=project_urls,
license='GNU General Public License v3 or later (GPLv3+)',
platforms='OS Independent',
classifiers=[
Expand Down

0 comments on commit 35264cd

Please sign in to comment.