generated from conda/conda-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (35 loc) · 966 Bytes
/
pyproject.toml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-scm>=8",
"tomli>=1.0.0; python_version < '3.11'"
]
build-backend = "setuptools.build_meta"
[project]
name = "conda-forge-conda-plugins"
authors = [
{name = "Matthew R. Becker", email = "[email protected]"},
]
description = "conda plugins for the conda-forge ecosystem"
readme = "README.md"
dynamic = ["version"]
license = {file = "License"}
requires-python = ">=3.9"
[project.urls]
home = "https://github.com/regro/conda-forge-conda-plugins"
[project.entry-points.conda]
conda-forge-conda-plugins = "conda_forge_conda_plugins.hooks"
[tool.setuptools]
packages = {find = {exclude=["tests*"]}}
[tool.setuptools_scm]
write_to = "conda_forge_conda_plugins/_version.py"
write_to_template = "__version__ = '{version}'\n"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.ruff.lint]
select = ["E", "F", "W"]
preview = true
[tool.ruff.lint.pycodestyle]
max-line-length = 120