-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
88 lines (76 loc) · 2.01 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
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["simple_typing_application"]
[project]
name = "simple_typing_application"
dynamic = ["version"]
authors = [{ name = "hmasdev", email = "[email protected]" }]
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
dependencies = [
"click",
"langchain",
"langchain_openai",
"openai",
"pydantic",
"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",
"flake8",
"mypy",
"pytest",
"pytest-cov",
"pytest-mock",
"twine",
"wheel",
]
[tool.setuptools.dynamic]
version = { attr = "simple_typing_application.__version__" }
[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