-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 744 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 744 Bytes
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
[tool.poetry]
name = "modelselector"
version = "0.1.0"
description = "Automatically select good surrogate modelling technique for any given dataset"
authors = ["Bhupinder Saini"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
numpy = "^1.16"
pandas = "^0.24.2"
scikit-learn = "^0.21.2"
pydoe = "^0.3.8"
optproblems = "^1.2"
rpy2 = "^3.0"
tzlocal = "^1.5"
seaborn = "^0.9.0"
diversipy = "^0.8.0"
ipython = "^7.6"
jupyter = "^1.0"
tqdm = "^4.32"
altair = "^3.1"
vega = "^2.5"
notebook = "^6.0"
plotly = "^4.2"
[tool.poetry.dev-dependencies]
black = {version = "^18.3-alpha.0",allows-prereleases = true}
flake8 = "^3.7"
pylint = "^2.3"
sphinx = "^2.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"