Skip to content

Commit e2419ab

Browse files
committed
feat: Add more metadata about the project for PyPi
1 parent 9c80e63 commit e2419ab

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

crates/typos-cli/pyproject.toml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,32 @@ build-backend = "maturin"
44

55
[project]
66
name = "typos"
7-
requires-python = ">=3.7"
7+
description = "Source Code Spelling Correction"
8+
requires-python = ">=3.8"
9+
keywords = [
10+
"development", "spelling"
11+
]
812
classifiers = [
13+
"Environment :: Console",
914
"Intended Audience :: Developers",
1015
"Topic :: Software Development",
16+
"Operating System :: OS Independent",
17+
"License :: OSI Approved :: MIT License",
18+
"License :: OSI Approved :: Apache Software License",
19+
"Programming Language :: Python",
20+
"Programming Language :: Python :: 3 :: Only",
1121
"Programming Language :: Rust",
1222
"Programming Language :: Python :: Implementation :: CPython",
1323
"Programming Language :: Python :: Implementation :: PyPy",
1424
]
1525

26+
readme = "../../README.md"
27+
28+
[project.urls]
29+
Repository = "https://github.com/crate-ci/typos"
30+
Documentation = "https://github.com/crate-ci/typos#typos"
31+
Changelog = "https://github.com/crate-ci/typos/blob/master/CHANGELOG.md"
32+
Releases = "https://github.com/crate-ci/typos/releases"
1633

1734
[tool.maturin]
1835
module-name = "typos"

0 commit comments

Comments
 (0)