-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.07 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
[tool.poetry]
name = "fasterrisk"
version = "0.1.10"
description = "Create sparse and accurate risk scoring systems!"
authors = ["Jiachang Liu <[email protected]>",
"Chudi Zhong <[email protected]>",
"Boxuan Li <[email protected]>",
"Margo Setlzer <[email protected]>",
"Cynthia Rudin <[email protected]>"
]
maintainers = ["Jiachang Liu <[email protected]>"]
license = "BSD 3-Clause"
readme = "README.md"
homepage = "https://pypi.org/project/fasterrisk/"
repository = "https://github.com/jiachangliu/FasterRisk"
documentation = "https://fasterrisk.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.23.3"
scikit-learn = "1.2.0"
pandas = "1.5.2"
requests = "^2.28.1"
matplotlib = "3.7.2"
pillow = "9.4.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
jupyter = "^1.0.0"
sphinx-autoapi = "^2.0.0"
sphinx-rtd-theme = "^1.0.0"
[tool.poetry.group.dev.dependencies]
seaborn = "^0.12.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"