Skip to content

Commit 5473ea8

Browse files
committed
Split lines up, added project.urls.Changelog
1 parent e0904e3 commit 5473ea8

2 files changed

Lines changed: 76 additions & 33 deletions

File tree

remove-json-keys/pyproject.toml

Lines changed: 34 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,40 @@
11
[build-system]
2-
requires = ["setuptools>=61.0", "wheel"]
2+
requires = [
3+
"setuptools>=61.0",
4+
"wheel",
5+
]
36
build-backend = "setuptools.build_meta"
47

58
[project]
69
name = "remove-json-keys"
710
version = "1.0.0"
811
description = "Simply remove JSON keys via CLI command."
9-
authors = [{name = "Adam Lui", email = "adam@kudoai.com"}]
12+
authors = [
13+
{ name = "Adam Lui", email = "adam@kudoai.com" },
14+
]
1015
readme = "README.md"
1116
license = "MIT"
12-
license-files = ["LICENSE.md"]
13-
dependencies = ["colorama>=0.4.6,<1.0.0"]
17+
license-files = [
18+
"LICENSE.md",
19+
]
20+
dependencies = [
21+
"colorama>=0.4.6,<1.0.0",
22+
]
1423
requires-python = ">=3.6,<4.0"
15-
keywords = ["json", "data"]
24+
keywords = [
25+
"json",
26+
"data",
27+
]
1628
classifiers = [
17-
"Development Status :: 5 - Production/Stable",
18-
"Intended Audience :: Developers",
19-
"Natural Language :: English",
20-
"Topic :: File Formats :: JSON",
21-
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.6",
23-
"Programming Language :: Python :: 3.7",
24-
"Programming Language :: Python :: 3.8",
25-
"Programming Language :: Python :: 3.9",
29+
"Development Status :: 5 - Production/Stable",
30+
"Intended Audience :: Developers",
31+
"Natural Language :: English",
32+
"Topic :: File Formats :: JSON",
33+
"Programming Language :: Python :: 3",
34+
"Programming Language :: Python :: 3.6",
35+
"Programming Language :: Python :: 3.7",
36+
"Programming Language :: Python :: 3.8",
37+
"Programming Language :: Python :: 3.9",
2638
]
2739

2840
[project.urls]
@@ -31,12 +43,18 @@ Repository = "https://github.com/adamlui/python-utils"
3143
Issues = "https://github.com/adamlui/python-utils/issues"
3244
Releases = "https://github.com/adamlui/python-utils/releases"
3345
Funding = "https://github.com/sponsors/adamlui"
46+
Changelog = "https://github.com/adamlui/python-utils/releases/tag/remove-json-keys-1.0.0"
3447

3548
[project.scripts]
3649
remove-json-keys = "remove_json_keys.__main__:main"
3750

3851
[tool.setuptools.packages.find]
39-
where = ["src"]
52+
where = [
53+
"src",
54+
]
4055

4156
[tool.setuptools.package-data]
42-
"*" = ["package_data.json", "*.md"]
57+
"*" = [
58+
"package_data.json",
59+
"*.md",
60+
]

translate-messages/pyproject.toml

Lines changed: 42 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,47 @@
11
[build-system]
2-
requires = ["setuptools>=61.0", "wheel"]
2+
requires = [
3+
"setuptools>=61.0",
4+
"wheel",
5+
]
36
build-backend = "setuptools.build_meta"
47

58
[project]
69
name = "translate-messages"
710
version = "1.1.0"
811
description = "Translate en/messages.json (chrome.i18n format) to other locales."
9-
authors = [{name = "Adam Lui", email = "adam@kudoai.com"}]
12+
authors = [
13+
{ name = "Adam Lui", email = "adam@kudoai.com" },
14+
]
1015
readme = "README.md"
1116
license = "MIT"
12-
license-files = ["LICENSE.md"]
13-
dependencies = ["requests>=2.32.0,<3.0.0", "translate>=3.8.0,<4.0.0", "colorama>=0.4.6,<1.0.0"]
17+
license-files = [
18+
"LICENSE.md",
19+
]
20+
dependencies = [
21+
"requests>=2.32.0,<3.0.0",
22+
"translate>=3.8.0,<4.0.0",
23+
"colorama>=0.4.6,<1.0.0",
24+
]
1425
requires-python = ">=3.6,<4.0"
15-
keywords = ["translate", "translation", "messages", "i18n", "chrome", "mymemory"]
26+
keywords = [
27+
"translate",
28+
"translation",
29+
"messages",
30+
"i18n",
31+
"chrome",
32+
"mymemory",
33+
]
1634
classifiers = [
17-
"Development Status :: 5 - Production/Stable",
18-
"Intended Audience :: Developers",
19-
"Natural Language :: English",
20-
"Topic :: Software Development :: Build Tools",
21-
"Topic :: Software Development :: Localization",
22-
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.6",
24-
"Programming Language :: Python :: 3.7",
25-
"Programming Language :: Python :: 3.8",
26-
"Programming Language :: Python :: 3.9",
35+
"Development Status :: 5 - Production/Stable",
36+
"Intended Audience :: Developers",
37+
"Natural Language :: English",
38+
"Topic :: Software Development :: Build Tools",
39+
"Topic :: Software Development :: Localization",
40+
"Programming Language :: Python :: 3",
41+
"Programming Language :: Python :: 3.6",
42+
"Programming Language :: Python :: 3.7",
43+
"Programming Language :: Python :: 3.8",
44+
"Programming Language :: Python :: 3.9",
2745
]
2846

2947
[project.urls]
@@ -33,13 +51,20 @@ Repository = "https://github.com/adamlui/python-utils"
3351
Issues = "https://github.com/adamlui/python-utils/issues"
3452
Releases = "https://github.com/adamlui/python-utils/releases"
3553
Funding = "https://github.com/sponsors/adamlui"
54+
Changelog = "https://github.com/adamlui/python-utils/releases/tag/translate-messages-1.1.0"
3655

3756
[project.scripts]
3857
translate-msgs = "translate_messages.__main__:main"
3958
translate-messages = "translate_messages.__main__:main"
4059

4160
[tool.setuptools.packages.find]
42-
where = ["src"]
61+
where = [
62+
"src",
63+
]
4364

4465
[tool.setuptools.package-data]
45-
"*" = ["package_data.json", "*.md", "assets/ascii/*.txt"]
66+
"*" = [
67+
"package_data.json",
68+
"*.md",
69+
"assets/ascii/*.txt",
70+
]

0 commit comments

Comments
 (0)