[build-system]
requires = ["setuptools>=45", "wheel", "setuptools-rust>=1.5.2"]
build-backend = "setuptools.build_meta"
[project]
name = "gtdb_tree"
version = "0.1.0"
description = "A Python package for parsing GTDB trees using Rust"
readme = "README.md"
authors = [{ name = "Your Name", email = "your.email@example.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
]
keywords = ["gtdb", "tree", "parser", "rust"]
dependencies = [
"setuptools-rust>=1.5.2",
]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/yourusername/gtdb_tree"
[tool.setuptools]
packages = ["gtdb_tree"]