|
1 | 1 | [project]
|
2 | 2 | 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" } |
3 | 9 | requires-python = ">=3.8"
|
| 10 | +dynamic = ["version"] |
| 11 | + |
4 | 12 | classifiers = [
|
5 | 13 | "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", |
8 | 25 | ]
|
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" |
16 | 26 | keywords = [
|
17 | 27 | "crc",
|
18 | 28 | "crc32",
|
19 | 29 | "simd",
|
20 | 30 | "checksum",
|
21 | 31 | ]
|
22 | 32 |
|
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" |
25 | 36 |
|
26 | 37 | [build-system]
|
27 | 38 | requires = ["maturin>=1.4,<2.0"]
|
|
0 commit comments