Itaykhealth commited on
Commit
bb6d9ba
1 Parent(s): 33637b0

poetry install

Browse files
Files changed (1) hide show
  1. pyproject.toml +28 -0
pyproject.toml ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "ask_k_evaluation"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["unknown <itay.manes@khealth.com>"]
6
+
7
+ [tool.poetry.dependencies]
8
+ python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
9
+ streamlit = "1.22.0"
10
+ altair = "4.0"
11
+ fsspec = "^2023.5.0"
12
+ scikit-learn = "^1.3.0"
13
+
14
+ [tool.poetry.dev-dependencies]
15
+ flake8 = "3.8.*"
16
+ black = "21.11b1"
17
+ isort = "4.3.*"
18
+ autoflake = "1.3.*"
19
+ pytest = "5.4.*"
20
+ vulture = "1.4.*"
21
+ pytest-asyncio = "0.15.*"
22
+ pytest-cov = "2.12.*"
23
+ click = "8.0.2"
24
+ bump2version = "^1.0.1"
25
+
26
+ [build-system]
27
+ requires = ["poetry-core>=1.0.0"]
28
+ build-backend = "poetry.core.masonry.api"