-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 1 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
[tool.poetry]
name = "prfr"
version = "0.2.4"
description = "Probabilitic random forest regression algorithm"
license = "MIT"
authors = ["Jeff Shen <[email protected]>"]
readme = "README.md"
repository = "https://github.com/al-jshen/prfr"
keywords = ["machine learning", "random forest", "regression", "probabilistic", "modeling"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = "^3.8,<4.0"
joblib = "^1.1.0"
numpy = "^1.21"
scipy = "^1.8.0"
scikit-learn = "^1.1"
tqdm = "^4.64.0"
noisyopt = "^0.2.2"
jax = {version = "^0.3.24", optional = true}
jaxopt = {version = "^0.5.5", optional = true}
optax = {version = "^0.1.3", optional = true}
[tool.poetry.extras]
jax = ["jax", "jaxopt", "optax"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"