Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Reproducible Builds
diffoscope
Compare revisions
b709345a8282d7979482fb037087cab36d0bcdcf...00238195a31bb51dedd52d581e4a0439c0b918ee
Commits (2)
setup.py: Add some URLs for the site of PyPI.org.
· 7856b3cd
Chris Lamb
authored
Aug 04, 2020
7856b3cd
Update "author" and author email.
· 00238195
Chris Lamb
authored
Aug 04, 2020
00238195
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
00238195
...
...
@@ -39,8 +39,8 @@ setup(
description
=
'in-depth comparison of files, archives, and directories'
,
long_description
=
open
(
'README.rst'
,
encoding
=
'utf-8'
).
read
(),
long_description_content_type
=
'text/x-rst'
,
author
=
'
Lunar
'
,
author_email
=
'
lunar@debian
.org'
,
author
=
'
Diffoscope developers
'
,
author_email
=
'
diffoscope@lists.reproducible-builds
.org'
,
license
=
'GPL-3+'
,
url
=
'https://diffoscope.org/'
,
packages
=
find_packages
(
exclude
=
[
'tests'
,
'tests.*'
]),
...
...
@@ -82,4 +82,10 @@ setup(
'Programming Language :: Python :: 3.7'
,
'Topic :: Utilities'
,
],
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#project-urls
project_urls
=
{
"Issues"
:
"https://salsa.debian.org/reproducible-builds/diffoscope/-/issues"
,
"Merge requests"
:
"https://salsa.debian.org/reproducible-builds/diffoscope/-/merge_requests"
,
},
)