-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.36 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "multi-dictate"
version = "1.0.0"
description = "A multi-language voice dictation application for Linux"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Costa Shulyupin", email = "constantine.shulyupin@gmail.com"},
]
keywords = ["voice", "dictation", "speech", "recognition", "linux", "multilingual"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
]
dynamic = ["dependencies"]
[project.scripts]
multi-dictate = "multi_dictate.dictate:main"
[project.urls]
Homepage = "https://github.com/makelinux/multi-dictate"
Repository = "https://github.com/makelinux/multi-dictate"
Issues = "https://github.com/makelinux/multi-dictate/issues"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["."]
include = ["multi_dictate*"]