-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 871 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (32 loc) · 871 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
[project]
name = "flowstate"
version = "1.0.0"
description = "A realistic typing simulator that pastes clipboard content with human-like imperfections"
readme = "README.md"
requires-python = ">=3.11,<3.13"
dependencies = [
"configparser>=7.2.0",
"keyboard>=0.13.5",
"pillow>=12.2.0",
"playwright>=1.59.0",
"pynput>=1.8.1",
"pyperclip>=1.11.0",
"customtkinter>=5.2.0",
"pystray>=0.19.5",
"spacy==3.7.4",
"numpy>=1.19.0,<2.0",
"nltk>=3.8.1",
"en-core-web-md @ https://github.com/explosion/spacy-models/releases/download/en_core_web_md-3.7.1/en_core_web_md-3.7.1.tar.gz",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"python-docx>=1.2.0",
]
[tool.pytest.ini_options]
pythonpath = ["src", "tests"]
testpaths = ["tests"]
addopts = "-q"
markers = [
"integration: tests that launch Playwright and a local editor",
]