5ecc5c6cb4
- Rust: more derives
34 lines
647 B
TOML
34 lines
647 B
TOML
[build-system]
|
|
requires = ["maturin>=1.9.4,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "ome-metadata"
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Programming Language :: Rust",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
dynamic = [
|
|
"version",
|
|
"description",
|
|
"readme",
|
|
"license",
|
|
"license-files",
|
|
"authors",
|
|
"maintainers",
|
|
"keywords",
|
|
"urls",
|
|
]
|
|
|
|
[tool.maturin]
|
|
features = ["python"]
|
|
module-name = "ome_metadata"
|
|
strip = true
|
|
|
|
[tool.isort]
|
|
line_length = 119
|