-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
66c96cc
commit ece1965
Showing
2 changed files
with
18 additions
and
6 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 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 |
---|---|---|
|
@@ -3,24 +3,37 @@ name = "openvino-tokenizers" | |
version = "2025.0.0.0" | ||
description = "Convert tokenizers into OpenVINO models" | ||
requires-python = ">=3.9" | ||
readme = {file = "README.md", content-type="text/markdown"} | ||
license = {text = "OSI Approved :: Apache Software License"} | ||
readme = { file = "README.md", content-type="text/markdown" } | ||
license = { "file" = "LICENSE" } | ||
|
||
authors = [ | ||
{ name = "OpenVINO Developers", email = "[email protected]" }, | ||
] | ||
|
||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Operating System :: Unix", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: MacOS", | ||
"Programming Language :: C++", | ||
"Programming Language :: C", | ||
"Programming Language :: Python :: 3 :: Only", | ||
] | ||
|
||
dependencies = [ | ||
# support of nightly openvino packages with dev suffix | ||
"openvino~=2025.0.0.0.dev" | ||
"openvino~=2025.0.0.dev" | ||
] | ||
|
||
[project.optional-dependencies] | ||
|
@@ -106,6 +119,6 @@ python_abi = "none" | |
requires = [ | ||
"py-build-cmake==0.3.2", | ||
"cmake~=3.14", | ||
"openvino~=2025.0.0.0.dev" | ||
"openvino~=2025.0.0.dev" | ||
] | ||
build-backend = "py_build_cmake.build" |