Skip to content

Commit

Permalink
Added project urls to setup files (#359)
Browse files Browse the repository at this point in the history
* Added project urls to setup files

* poetry lock error
  • Loading branch information
JessicaTegner authored Apr 12, 2024
1 parent 31105f1 commit f1fcee8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,9 @@
python_requires=pypandoc.__python_requires__,
setup_requires = pypandoc.__setup_requires__,
classifiers=pypandoc.__classifiers__,
test_suite = 'tests'
test_suite = 'tests',
project_urls={
'Source': pypandoc.__url__,
'Tracker': pypandoc.__url__ + '/issues',
}
)
6 changes: 5 additions & 1 deletion setup_binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,9 @@ def run(self):
setup_requires = pypandoc.__setup_requires__,
classifiers=pypandoc.__classifiers__,
test_suite = 'tests',
cmdclass=cmd_classes
cmdclass=cmd_classes,
project_urls={
'Source': pypandoc.__url__,
'Tracker': pypandoc.__url__ + '/issues',
}
)

0 comments on commit f1fcee8

Please sign in to comment.