Skip to content

Commit 0e44c5b

Browse files
update project metadata
1 parent adba3e1 commit 0e44c5b

File tree

2 files changed

+29
-11
lines changed

2 files changed

+29
-11
lines changed

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
name = "pycrc32"
33
version = "0.1.1"
44
edition = "2021"
5+
authors = ["cybuerg <[email protected]>"]
6+
description = "Python module for SIMD-accelerated CRC32 checksum computation"
7+
license = "MIT License"
8+
homepage = "https://github.com/code-inflation/pycrc32"
9+
repository = "https://github.com/code-inflation/pycrc32"
10+
readme = "README.md"
11+
keywords = ["crc", "crc32", "simd", "checksum"]
512

613
[lib]
714
name = "pycrc32"

pyproject.toml

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,38 @@
11
[project]
22
name = "pycrc32"
3+
description = "Python module for SIMD-accelerated CRC32 checksum computation"
4+
readme = "README.md"
5+
authors = [
6+
{ name = "Robin Bürgi", email = "[email protected]" },
7+
]
8+
license = { file = "LICENSE.txt" }
39
requires-python = ">=3.8"
10+
dynamic = ["version"]
11+
412
classifiers = [
513
"Programming Language :: Rust",
6-
"Programming Language :: Python :: Implementation :: CPython",
7-
"Programming Language :: Python :: Implementation :: PyPy",
14+
"Programming Language :: Python",
15+
"Programming Language :: Python :: 3",
16+
"Programming Language :: Python :: 3 :: Only",
17+
"Programming Language :: Python :: 3.8",
18+
"Programming Language :: Python :: 3.9",
19+
"Programming Language :: Python :: 3.10",
20+
"Programming Language :: Python :: 3.11",
21+
"Programming Language :: Python :: 3.12",
22+
"License :: OSI Approved :: MIT License",
23+
"Operating System :: OS Independent",
24+
"Topic :: Scientific/Engineering",
825
]
9-
dynamic = ["version"]
10-
readme = "README.md"
11-
description = "Python module for SIMD-accelerated CRC32 checksum computation"
12-
author = "cybuerg <[email protected]>"
13-
maintainer = "cybuerg <[email protected]>"
14-
homepage = "https://github.com/code-inflation/pycrc32"
15-
repository = "https://github.com/code-inflation/pycrc32"
1626
keywords = [
1727
"crc",
1828
"crc32",
1929
"simd",
2030
"checksum",
2131
]
2232

23-
[tool.poetry.urls]
24-
"Bug Tracker" = "https://github.com/code-inflation/pycrc32/issues"
33+
[project.urls]
34+
Homepage = "https://github.com/code-inflation/pycrc32"
35+
Repository = "https://github.com/code-inflation/pycrc32"
2536

2637
[build-system]
2738
requires = ["maturin>=1.4,<2.0"]

0 commit comments

Comments
 (0)