I am going to publish my first pypi org project. My package requires to install selenim and webdriver-manager. here is my pyproject.toml I don't understand what will be build-backend. I see the document and it's hatchling.build but I believe it will be different for every project.
[build-system]
requires = ["selenium","webdriver-manager"] #this two package must be require to install
build-backend = #I don't don't know what will be build-backend here
[project]
name = "my project name"
version = "0.0.1"
authors = [
{ name="my name", email="my email" },
]
description = "my descriptiong."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "my project github url"
"Bug Tracker" = "my project github url"