Skip to content

Commit 47382fe

Browse files
committed
build: use dynamic classifiers
1 parent b134509 commit 47382fe

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

pyproject.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,13 @@
11
[project]
22
name = "syllables"
3-
dynamic = ["version"]
3+
dynamic = ["version", "classifiers"]
44
description = "A Python package for estimating the number of syllables in a word."
55
license = { text = "GPLv3" }
66
readme = "README.md"
77
requires-python = ">=3.9,<4.0"
88
authors = [
99
{ name = "David L. Day", email = "david@davidlday.com" }
1010
]
11-
classifiers = [
12-
"Development Status :: 5 - Production/Stable",
13-
"Intended Audience :: Developers",
14-
"Intended Audience :: Science/Research",
15-
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
16-
"Natural Language :: English",
17-
"Operating System :: OS Independent",
18-
"Programming Language :: Python :: 3",
19-
"Topic :: Software Development :: Libraries :: Python Modules",
20-
"Topic :: Text Processing :: Linguistic",
21-
]
2211
dependencies = [
2312
"cmudict>=1.0.11",
2413
"importlib-metadata>=5.1,<7.0"
@@ -41,6 +30,17 @@ version_files = [
4130

4231
[tool.poetry]
4332
version = "1.1.1"
33+
classifiers = [
34+
"Development Status :: 5 - Production/Stable",
35+
"Intended Audience :: Developers",
36+
"Intended Audience :: Science/Research",
37+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
38+
"Natural Language :: English",
39+
"Operating System :: OS Independent",
40+
"Programming Language :: Python :: 3",
41+
"Topic :: Software Development :: Libraries :: Python Modules",
42+
"Topic :: Text Processing :: Linguistic",
43+
]
4444

4545
[tool.poetry.group.dev.dependencies]
4646
pytest = "^7.2.0"

0 commit comments

Comments
 (0)