-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (90 loc) · 2.18 KB
/
pyproject.toml
File metadata and controls
104 lines (90 loc) · 2.18 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools.packages.find]
where = ["."]
include = ["simple_typing_application"]
[project]
name = "simple_typing_application"
dynamic = ["version"]
authors = [{ name = "hmasdev", email = "hmasuidev1com@gmail.com" }]
description = "Simple Typing Application: To Measure Your Typing Performance"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["typing", "keyboard"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dependencies = [
"click",
"langchain>=1.0",
"langchain_openai",
"openai",
"pydantic>=2.0",
"pynput",
"python-dotenv",
"requests",
"sshkeyboard",
"types-pynput",
"types-requests",
]
[project.urls]
Repository = "https://github.com/hmasdev/simple_typing_application"
[project.optional-dependencies]
extra = ["jupyter", "jupyterlab", "matplotlib", "pandas", "seaborn"]
huggingface = [
"torch",
"accelerate",
"protobuf",
"transformers",
"sentencepiece",
]
dev = [
"autopep8",
"eval_type_backport",
"ruff",
"mypy",
"pytest",
"pytest-cov",
"pytest-mock",
"twine",
"wheel",
]
[tool.hatch.version]
path = "simple_typing_application/__init__.py"
[tool.pytest.ini_options]
addopts = "--cov=simple_typing_application --cov-branch --cov-report=term-missing --cov-report=xml --doctest-modules"
minversion = "6.0"
testpaths = ["tests"]
markers = ["integrate: integration test"]
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
plugins = "pydantic.mypy"
[[tool.mypy.overrides]]
module = "sshkeyboard"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "transformers"
ignore_missing_imports = true
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.uv]
dev-dependencies = [
"autopep8",
"eval_type_backport",
"ruff",
"mypy",
"pytest",
"pytest-cov",
"pytest-mock",
"twine",
"wheel",
]