Skip to content

Commit

Permalink
more metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
kruscpe1 committed Apr 15, 2024
1 parent ec18a69 commit 25e872b
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools", "wheel"]
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -12,7 +12,21 @@ authors = [
{name = "Peter Krusche", email = "peter.krusche@novartis.com"},
{name = "Qian Cao", email = "qian.cao@fda.hhs.com"}
]

license = {file = "LICENSE.txt"}
readme = "README.md"

keywords = ["example", "project", "tutorial"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]

dependencies = [
"torch",
Expand All @@ -22,6 +36,13 @@ dependencies = [
"torchmetrics",
]

[project.urls]
Homepage = "https://github.com/Novartis/torchsurv"
Repository = "https://github.com/Novartis/torchsurv"
Documentation = "https://opensource.nibr.com/torchsurv/"
IssueTracker = "https://github.com/Novartis/torchsurv/issues"
Changelog = "https://opensource.nibr.com/torchsurv/CHANGELOG.html"

[tool.pylint]
max-line-length = 250
disable = ["C0114", "C0116", "R0801", "R0915", "E0402"]
Expand Down

0 comments on commit 25e872b

Please sign in to comment.