-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from dougransom/master
some tweaks to pyproject.toml.
- Loading branch information
Showing
7 changed files
with
41 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,43 @@ | ||
[build-system] | ||
requires = ["flit_core >=2,<4"] | ||
build-backend = "flit_core.buildapi" | ||
|
||
[project] | ||
version = '3.1.10.dev1' | ||
dependencies=[ | ||
"dtactions~=1.6.4.dev3", | ||
"natlinkcore >= 5.4.1" | ||
] | ||
requires-python = ">=3.10" | ||
name='vocola2' | ||
authors = [{name = "Mark Lillibridge", email = "[email protected]"}] | ||
name = "vocola2" | ||
readme = "README.md" | ||
classifiers=[ "Development Status :: 4 - Beta", | ||
"Topic :: Multimedia :: Sound/Audio :: Speech", | ||
"Topic :: Scientific/Engineering :: Human Machine Interfaces"] | ||
|
||
description = "Vocola2 (for Natlink)" | ||
|
||
requires-python = ">=3.8" | ||
version="3.1.10.dev2" | ||
description="Vocola is a voice command language for creating commands to control a computer by voice " | ||
keywords=["dragon","speech","dictation","dictation-toolbox","natlink", "dtactions"] | ||
|
||
dependencies = ["dtactions == 1.6.4.dev3", | ||
"natlinkcore >= 5.4.1"] | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Win32 (MS Windows)", | ||
"Intended Audience :: Developers", | ||
"Operating System :: Microsoft :: Windows", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Topic :: Multimedia :: Sound/Audio :: Speech", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Scientific/Engineering :: Human Machine Interfaces", | ||
] | ||
|
||
[project.urls] | ||
homepage="http://vocola.net/v2/" | ||
repository="https://github.com/dictation-toolbox/Vocola2" | ||
|
||
keywords="dragon,speech,dictation,dictation-toolbox,unimacro,natlink" | ||
[project.optional-dependencies] | ||
test = [ | ||
"pytest >=7.1.2", | ||
] | ||
dev = [ | ||
"pyenvutils","entry-point-inspector","build" | ||
] | ||
|
||
|
||
|
||
[project.urls] | ||
|