Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC] Add more project URLs to PyPI page via pyproject.toml #20

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ authors = [
{ name = "Felix Dangel" },
{ name = "Scott Lowe" },
]
urls = { Repository = "https://github.com/f-dangel/wandb_preempt" }
description = "Code and tutorial on integrating wandb with slurm pre-emption"
readme = { file = "README.md", content-type = "text/markdown; charset=UTF-8; variant=GFM" }
license = { text = "MIT" }
Expand All @@ -35,10 +34,16 @@ dependencies = [
"torch",
"wandb",
]

# Require a specific Python version, e.g. Python 2.7 or >= 3.4
requires-python = ">=3.9"

# URLs associated with the project
[project.urls]
Documentation = "https://wandb-preempt.readthedocs.io"
Repository = "https://github.com/f-dangel/wandb_preempt"
Issues = "https://github.com/f-dangel/wandb_preempt/issues"
Changelog = "https://github.com/f-dangel/wandb_preempt/blob/main/changelog.md"

[project.optional-dependencies]
# Dependencies needed to run the tests (comma/line-separated)
# Dependencies needed to run the tests.
Expand Down