-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Compatability tools for Rattler Build | ||
|
||
This repository contains a set of tools to help with the integration of rattler-build into conda-forge. | ||
Mainly by providing an interface that is recognizable for uses used to `conda-build` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=45", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
requires = ["hatchling>=1.24"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "rattler-build-conda-compat" | ||
description="A package for exposing rattler-build API for conda-smithy" | ||
description = "A package for exposing rattler-build API for conda-smithy" | ||
version = "0.0.6" | ||
readme = "README.md" | ||
authors = [{name = "Nichita Morcotilo", email = "nichita@prefix.dev"}] | ||
license = {file = "LICENSE.txt"} | ||
authors = [{ name = "Nichita Morcotilo", email = "nichita@prefix.dev" }] | ||
license = { file = "LICENSE.txt" } | ||
|
||
requires-python = ">=3.8" | ||
|
||
|
||
[tool.pyright] | ||
venvPath = ".pixi/envs" | ||
venv = "default" |