-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
64 lines (59 loc) · 1.83 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "burmese_tokenizer"
version = "0.1.3"
description = "A simple tokenizer for Burmese text"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "janakhpon", email = "jnovaxer@gmail.com" }
]
license = { text = "MIT" }
keywords = ["burmese", "tokenizer", "nlp", "myanmar", "text-processing"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"sentencepiece>=0.1.99",
"click>=8.0.0",
"rich>=13.0.0",
"twine>=6.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
"ruff>=0.1.0",
]
docs = [
"sphinx>=7.0.0",
"sphinx-rtd-theme>=1.3.0",
]
[project.urls]
Homepage = "https://github.com/Code-Yay-Mal/burmese_tokenizer"
Documentation = "https://github.com/Code-Yay-Mal/burmese_tokenizer#readme"
Repository = "https://github.com/Code-Yay-Mal/burmese_tokenizer"
Issues = "https://github.com/Code-Yay-Mal/burmese_tokenizer/issues"
Changelog = "https://github.com/Code-Yay-Mal/burmese_tokenizer/blob/main/CHANGELOG.md"
[project.scripts]
burmese_tokenizer = "burmese_tokenizer.cli:main"
[build-system]
requires = ["uv_build>=0.8.13,<0.9.0"]
build-backend = "uv_build"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true