-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
57 lines (49 loc) · 1.53 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "torchsurv"
version = "0.1.3"
description = "Deep survival analysis made easy with pytorch"
authors = [
{name = "Thibaud Coroller", email = "[email protected]"},
{name = "Melodie Monod", email = "[email protected]"},
{name = "Peter Krusche", email = "[email protected]"},
{name = "Qian Cao", email = "[email protected]"}
]
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",
"scipy",
"numpy",
"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"]
max-args = 10
max-attributes = 15
max-module-lines = 1500
max-locals = 40
[tool.isort]
profile = "black"
[tool.mypy]
show_error_codes = true