-
Notifications
You must be signed in to change notification settings - Fork 4
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
6a84331
commit e26874c
Showing
14 changed files
with
110 additions
and
64 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 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[build-system] | ||
requires = ["setuptools>=62.3"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "unicode-rbnf" | ||
version = "2.2.0" | ||
license = {text = "MIT"} | ||
description = "Rule-based number formatting using Unicode CLDR data" | ||
readme = "README.md" | ||
authors = [ | ||
{name = "Michael Hansen", email = "[email protected]"} | ||
] | ||
keywords = ["rbnf", "unicode", "number", "format"] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Topic :: Text Processing :: Linguistic", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.8", | ||
"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", | ||
] | ||
requires-python = ">=3.8.0" | ||
|
||
[project.urls] | ||
"Source Code" = "https://github.com/rhasspy/unicode-rbnf" | ||
|
||
[tool.setuptools] | ||
platforms = ["any"] | ||
zip-safe = true | ||
include-package-data = true | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["unicode_rbnf"] | ||
|
||
[tool.setuptools.package-data] | ||
unicode_rbnf = ["rbnf/*.xml"] |
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,6 +1,7 @@ | ||
black==22.12.0 | ||
flake8==6.0.0 | ||
isort==5.11.3 | ||
mypy==0.991 | ||
pylint==2.15.9 | ||
pytest==7.4.3 | ||
build>=1,<2 | ||
black>=24,<25 | ||
flake8>=7,<8 | ||
isort>=5,<6 | ||
mypy>=1,<2 | ||
pylint>=3,<4 | ||
pytest>=7,<8 |
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
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,6 +1,6 @@ | ||
[tox] | ||
env_list = | ||
py{38,39,310,311,312} | ||
py{38,39,310,311,312,313} | ||
minversion = 4.12.1 | ||
|
||
[testenv] | ||
|
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
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