-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.74 KB
/
pyproject.toml
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
65
[tool.commitizen]
version = "1.0.32"
tag_format = "v$version"
update_changelog_on_bump = true
changelog_incremental = true
bump_message = "bump: $current_version → $new_version"
version_files = [
"pyproject.toml:version",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cmudict"
version = "1.0.32"
description = "A versioned python wrapper package for The CMU Pronouncing Dictionary data files."
authors = ["David L. Day <[email protected]>"]
license = "GPL-3.0-or-later"
homepage = "https://github.com/prosegrinder/python-cmudict"
repository = "https://github.com/prosegrinder/python-cmudict"
readme = "README.md"
keywords = ["cmudict"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
]
exclude = [
"src/cmudict/data/.git"
]
[tool.poetry.dependencies]
python = "^3.8"
importlib-metadata = ">=5"
importlib-resources = ">=5"
[tool.poetry.group.dev.dependencies]
pytest = ">=6.2.2"
coverage = {extras = ["toml"], version = ">=6.5"}
pytest-cov = ">=4.0"
pylint = ">=3"
black = ">=22.10"
[tool.pytest.ini_options]
filterwarnings = [
# note the use of single quote below to denote "raw" strings in TOML
'ignore:open_binary is deprecated. Use files\(\) instead.:DeprecationWarning',
]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["cmudict"]
[tool.coverage.report]
show_missing = true
fail_under = 100