Files
uv/pyproject.toml
T

45 lines
1.3 KiB
TOML
Raw Normal View History

2024-01-18 15:44:11 -05:00
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
2024-02-15 11:19:46 -06:00
name = "uv"
2024-02-17 15:22:07 -05:00
version = "0.1.4"
description = "An extremely fast Python package installer and resolver, written in Rust."
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
2024-02-04 13:56:00 -08:00
requires-python = ">=3.8"
keywords = [
"uv", "requirements", "packaging"
]
2024-02-04 13:56:00 -08:00
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
2024-02-04 13:56:00 -08:00
"Programming Language :: Python",
"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 :: 3 :: Only",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
2024-02-04 13:56:00 -08:00
]
2024-01-18 15:44:11 -05:00
readme = "README.md"
2024-01-18 16:16:11 -05:00
[project.urls]
2024-02-15 11:19:46 -06:00
Repository = "https://github.com/astral-sh/uv"
Documentation = "https://github.com/astral-sh/uv"
2024-01-18 16:16:11 -05:00
2024-01-18 15:44:11 -05:00
[tool.maturin]
bindings = "bin"
2024-02-15 11:19:46 -06:00
manifest-path = "crates/uv/Cargo.toml"
module-name = "uv"
2024-01-18 15:44:11 -05:00
python-source = "python"
strip = true
include = ["rust-toolchain.toml"]