-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add homepage and keywords to packages
- Loading branch information
1 parent
e8213f7
commit 7ceb134
Showing
6 changed files
with
34 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ authors = ["Christian Sdunek <[email protected]>"] | |
keywords = ["tokenizer", "nlp", "bpe", "unigram", "wordpiece"] | ||
categories = ["text-processing", "algorithms", "wasm", "no-std", "parser-implementations"] | ||
license = "BSD-2-Clause" | ||
homepage = "https://kitoken.dev" | ||
repository = "https://github.com/Systemcluster/kitoken" | ||
readme = "README.md" | ||
edition = "2021" | ||
|
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 |
---|---|---|
|
@@ -8,11 +8,19 @@ | |
"email": "[email protected]" | ||
}, | ||
"license": "BSD-2-Clause", | ||
"homepage": "https://kitoken.dev", | ||
"repository": { | ||
"type": "git", | ||
"url": "github:Systemcluster/kitoken" | ||
}, | ||
"readme": "README.md", | ||
"keywords": [ | ||
"tokenizer", | ||
"nlp", | ||
"bpe", | ||
"unigram", | ||
"wordpiece" | ||
], | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
|
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
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 |
---|---|---|
|
@@ -23,11 +23,17 @@ classifiers = [ | |
"License :: OSI Approved :: BSD License", | ||
"Typing :: Typed", | ||
] | ||
keywords = ["tokenizer", "nlp", "bpe", "unigram", "wordpiece"] | ||
authors = [{ name = "Christian Sdunek", email = "[email protected]" }] | ||
urls = { repository = "https://github.com/Systemcluster/kitoken" } | ||
readme = "README.md" | ||
|
||
|
||
[project.urls] | ||
|
||
Homepage = "https://kitoken.dev" | ||
Repository = "https://github.com/Systemcluster/kitoken" | ||
|
||
|
||
[build-system] | ||
|
||
requires = [ | ||
|