-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "xet-shard-parser" # 🔑 Use hyphen here, since PyPI normalizes names this way
version = "0.1.1"
description = "Python bindings to parse Xet shards and extract reconstruction info"
authors = [{ name = "Rupesh S", email = "wrufesh@gmail.com" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.8"
# Good to have trove classifiers so PyPI search works better
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
[project.urls]
Homepage = "https://github.com/yourname/xet_shard_parser"
Repository = "https://github.com/yourname/xet_shard_parser"
Issues = "https://github.com/yourname/xet_shard_parser/issues"
[tool.maturin]
# maturin-specific config (optional, but recommended for Rust bindings)
module-name = "xet_shard_parser"
features = ["pyo3/extension-module", "pyo3/abi3-py38"]