mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-20 11:56:03 +00:00
parent
c279b4ab54
commit
cfa1de311e
6 changed files with 86 additions and 11 deletions
|
|
@ -2639,6 +2639,16 @@ pub struct BuildArgs {
|
|||
#[arg(long)]
|
||||
pub clear: bool,
|
||||
|
||||
#[arg(long, overrides_with("no_create_gitignore"), hide = true)]
|
||||
pub create_gitignore: bool,
|
||||
|
||||
/// Do not create a `.gitignore` file in the output directory.
|
||||
///
|
||||
/// By default, uv creates a `.gitignore` file in the output directory to exclude build
|
||||
/// artifacts from version control. When this flag is used, the file will be omitted.
|
||||
#[arg(long, overrides_with("create_gitignore"))]
|
||||
pub no_create_gitignore: bool,
|
||||
|
||||
/// Constrain build dependencies using the given requirements files when building distributions.
|
||||
///
|
||||
/// Constraints files are `requirements.txt`-like files that only control the _version_ of a
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue