forked from openkylin/python-installer
22 lines
417 B
TOML
22 lines
417 B
TOML
[build-system]
|
|
requires = ["flit_core >=3.2.0,<4"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[project]
|
|
name = "installer"
|
|
authors = [
|
|
{ name = "Pradyun Gedam", email = "pradyunsg@gmail.com" },
|
|
]
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
]
|
|
requires-python = ">=3.7"
|
|
dynamic = [
|
|
"version",
|
|
"description",
|
|
]
|
|
|
|
[project.urls]
|
|
"GitHub" = "https://github.com/pypa/installer"
|