-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (49 loc) · 1.24 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gengowatcher"
version = "3.0.0"
description = "Terminal monitor for Gengo translation jobs"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.14.3",
"feedparser",
"rich",
"textual>=0.86.2",
"websockets>=16.0",
"fastapi",
"uvicorn[standard]",
"pydantic",
"python-multipart",
"python-docx>=1.1.0",
"openpyxl>=3.1.0",
"pypdf>=5.0.0",
"reportlab>=4.0.0",
"cryptography>=3.4.8",
"requests>=2.25.1",
"imapclient>=2.3.0",
"playwright>=1.40.0",
"playwright-stealth>=1.0.6",
"prometheus-client>=0.20.0",
"textual-plotext>=1.0.0",
]
[project.scripts]
gengowatcher = "gengowatcher.main:run"
gengo-watcher = "gengowatcher.main:run"
gengowatcher-browser-worker = "gengowatcher.browser_worker.main:main"
gengowatcher-gengo-sandbox = "gengowatcher.gengo_sandbox.main:main"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
gengowatcher = ["gengo_watcher.tcss"]
[tool.black]
line-length = 88
target-version = ["py311"]
extend-exclude = '''
/\.worktrees/
'''