-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
76 lines (56 loc) · 1.63 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "dtactions"
authors = [{name = "Quintijn Hoogenboom", email="[email protected]"}]
maintainers = [{name = "Quintijn Hoogenboom", email="[email protected]"}, {name = "LexiconCode", email = "[email protected]"}]
dynamic = ["description"]
requires-python = ">=3.9"
readme = "README.md"
version="1.6.4.dev3"
dependencies= [
"pywin32 >= 300",
"debugpy",
"platformdirs"
]
classifiers=[ "Development Status :: 4 - Beta",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
]
####repository = "https://github.com/dictation-toolbox/dtactions"
keywords=["dragon","speech","dictation","dictation-toolbox","natlink"]
[project.optional-dependencies]
test = [
"pytest >=7.1.2",
]
dev = [
"pyenvutils",
"build"
]
[project.scripts]
[project.urls]
Home = "https://github.com/dictation-toolbox/dtactions"
Readthedocs = "https://dtactions.readthedocs.io/en/latest/sendkeys.html"
[tool.pytest.ini_options]
minversion = "7.1.2"
addopts = "--capture=tee-sys "
# very important
#the pythonpath lets pytest load code in your source area
#in addition to that in site-packages etc.
#you may want to run your tests without install natlinkcore with flit or pip
pythonpath = [
"src",
"src/dtactions",
]
testpaths= [
"tests",
]
python_files = [
"unittest*.py",
"test_*.py",
]
[tool.ruff]
include = ["pyproject.toml", "src/**/*.py", "scripts/**/*.py","tests/**/*.py"]
[tool.pyright]
include = ["pyproject.toml", "src/**/*.py", "scripts/**/*.py","tests/**/*.py"]