-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.25 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
[tool.poetry]
name = "convoviz"
version = "0.1.7"
description = "Get analytics and visualizations on your ChatGPT data !"
authors = ["Mohamed Cheikh Sidiya <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mohamed-chs/chatgpt-history-export-to-md"
keywords = [
"markdown",
"advanced-data-analysis",
"json",
"zip",
"openai",
"chatgpt",
"bookmarklet",
"obsidian-md",
"code-interpreter",
]
[tool.poetry.dependencies]
python = "^3.9"
questionary = "^2.0.1"
tqdm = "^4.66.1"
matplotlib = "^3.8.1"
nltk = "^3.8.1"
wordcloud = "^1.9.2"
pydantic = "^2.4.2"
orjson = "^3.9.10"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.4"
pytest = "^7.4.3"
mypy = "^1.6.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = ["ALL"]
ignore = [
"ANN101", # missing-type-self
"ANN102", # missing-type-cls
"TD002", # missing-todo-author
"TD003", # missing-todo-link
]
extend-include = ["*.ipynb"]
[tool.ruff.per-file-ignores]
"convoviz/cli.py" = ["T201"] # print
"*.ipynb" = ["T201"] # print
"tests/*" = ["S101", "SLF001"] # assert , private-member-access
[tool.mypy]
strict = true
enable_incomplete_feature = ["Unpack"]