-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (53 loc) · 1.16 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "clozify-openai"
version = "0.1.0"
description = ""
authors = ["awbirdsall"]
readme = "README.md"
packages = [{include = "clozify_llm", from="src"}]
[tool.poetry.scripts]
clozify = "clozify_llm.cli:cli"
[tool.poetry.dependencies]
python = "^3.9"
openai = "^0.27.2"
tenacity = "^8.2.2"
click = "^8.1.3"
[tool.poetry.group.prep]
optional = true
[tool.poetry.group.prep.dependencies]
pandas = "^1.5.3"
ipython = "^8.11.0"
requests = "^2.28.2"
lxml = "^4.9.2"
beautifulsoup4 = "^4.11.2"
html5lib = "^1.1"
scikit-learn = "^1.2.2"
odfpy = "^1.4.1"
matplotlib = "^3.7.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
black = "^23.1.0"
pylint = "^2.17.0"
pre-commit = "^3.1.1"
ruff = "^0.0.267"
pytest-cov = "^4.1.0"
coverage-badge = "^1.1.0"
[tool.poetry.group.lab.dependencies]
jupyterlab = "^3.6.3"
session-info = "^1.0.0"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
addopts = "--cov"
[tool.coverage.run]
source = ["clozify_llm"]
[tool.black]
line-length = 120
target-version = ['py39']
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"