-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 993 Bytes
/
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
[tool.poetry]
name = "llmask"
version = "1.1.0"
description = "A command-line tool for masking authorship of text, by changing the writing style with a Large Language Model."
authors = ["top-on <[email protected]>"]
readme = "README.md"
packages = [{ include = "llmask" }]
[tool.poetry.dependencies]
python = "^3.10"
openai = "^1.8.0"
requests = "^2.31.0"
typer = "^0.9.0"
tqdm = "^4.66.1"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.28.0"
mypy = "^1.8.0" # keep in sync with pre-commit
pre-commit = "^3.6.0"
ruff = "^0.1.14" # keep in sync with pre-commit
types-requests = "^2.31.0.20240106"
pytest = "^8.0.0"
[tool.poetry.scripts]
llmask = "llmask.cli:app"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
fix = true
line-length = 88
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"