-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 798 Bytes
/
pyproject.toml
File metadata and controls
27 lines (23 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "conda-recipe-v2-schema"
description = "Model for the recipe used to build conda packages"
readme = "README.md"
maintainers = [
{ name = "Bas Zalmstra", email = "zalmstra.bas@gmail.com" },
{ name = "Julian Hofer", email = "julian.hofer@protonmail.com" },
]
requires-python = ">=3.10"
dependencies = ["pydantic"]
dynamic = ["version"]
license = { text = "BSD-3-Clause" }
[project.urls]
Home = "https://github.com/prefix-dev/recipe-format"
Code = "https://github.com/prefix-dev/recipe-format"
Issues = "https://github.com/prefix-dev/recipe-format"
[tool.hatch.version]
path = "conda_recipe_v2_schema/__init__.py"
[tool.hatch.build.targets.sdist]
only-include = ["conda_recipe_v2_schema", "tests"]