-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.58 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
[tool.poetry]
name = "vietnam_number"
version = "1.0.6"
description = "Thư viện xữ lý chữ số dành riêng cho Tiếng Việt - Hỗ trợ chuyển đổi cho cả văn nói và văn viết"
authors = ["Nguyễn Hoài Thương <[email protected]>"]
repository = "https://github.com/ngthuong45/vietnam-number.git"
license = "GPL-3.0-or-later"
readme = "README.rst"
keywords = ["Vietnam", "number", "w2n", "n2w", "number to word", "word to number", "text to number", "number to text"]
classifiers = [
'Natural Language :: Vietnamese',
'Intended Audience :: Information Technology',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Localization',
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
'Programming Language :: Python :: 3 :: Only',
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pytest = "^5.2"
pre-commit = "^2.8.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 127
[tool.black]
line-length = 127
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
)/
'''