-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 826 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
36
37
38
39
40
41
42
[tool.poetry]
name = "llm-discharge-summaries"
version = "1.0.0"
description = ""
authors = ["simonEllershaw <simje@live.co.uk>"]
readme = "README.md"
packages = [{include = "llm_discharge_summaries"}]
[tool.poetry.dependencies]
python = "^3.11"
jupyter = "^1.0.0"
python-dotenv = "^1.0.0"
openai = "^0.27.8"
matplotlib = "^3.7.2"
tiktoken = "^0.4.0"
jsonschema = "^4.19.0"
jsonref = "^1.1.0"
pandas = "^2.1.4"
# pydantic fixed so schema generation is consitent
pydantic = "1.7.4"
openpyxl = "^3.1.2"
python-docx = "^1.1.0"
scipy = "^1.13.0"
jupyterlab = "^4.1.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.autoflake]
remove_all_unused_imports = true
[tool.black]
preview = true
[tool.isort]
profile = "black"
filter_files = true
[tool.mypy]
ignore_missing_imports = true