-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
68 lines (60 loc) · 1.89 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
[build-system]
requires = ["flit_core >=3.2,<4", "pytest>=7.1.2"]
build-backend = "flit_core.buildapi"
[project]
name = "natlinkcore"
authors = [{name = "Quintijn Hoogenboom (maintainer)", email = "[email protected]"}]
version="5.5a1.dev1"
dynamic = [ "description"]
requires-python = ">=3.9"
readme = "readme.md"
dependencies= [
"FreeSimpleGUI>=5.1.0",
"pydebugstring >= 1.0.0.1",
"dtactions>=1.6.3",
"platformdirs >= 4.2.0",
"natlink ~= 5.5, >= 5.5.7"
]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.optional-dependencies]
test = [
"pytest >=7.1.2",
]
dev = [
"pyenvutils","entry-point-inspector","build"
]
[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/natlinkcore",
"tests",
]
testpaths= [
"tests",
]
[project.scripts]
natlinkconfig_cli = "natlinkcore.configure.natlinkconfig_cli:main_cli"
natlink_extensions = "natlinkcore.configure.natlink_extensions:main"
[project.gui-scripts]
natlinkconfig_gui = "natlinkcore.configure.natlinkconfig_gui:main_gui"
[project.entry-points."dt.loggers"]
natlink ="natlinkcore:logname"
[project.entry-points."natlink.extensions"]
natlink_sample_macros = "natlinkcore.SampleMacros:locateme"
[project.urls]
Home = "https://github.com/dictation-toolbox/natlinkcore/"