-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.09 KB
/
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
45
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm>=7",
"tomli>=1.0.0; python_version < '3.11'",
]
build-backend = "setuptools.build_meta"
[project]
name = "conda-forge-feedstock-check-solvable"
authors = [
{name = "conda-forge-tick development team", email = "[email protected]"},
]
description = "A mamba-based package to check if a conda-forge feedstock is solvable."
dynamic = ["version", "dependencies", "optional-dependencies"]
license = {file = "LICENSE"}
readme = "README.md"
[project.urls]
home = "https://github.com/regro/conda-forge-feedstock-check-solvable"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies.mamba = { file = ["requirements-mamba.txt"] }
[tool.setuptools.packages.find]
exclude = ['tests*']
[tool.setuptools_scm]
write_to = "conda_forge_feedstock_check_solvable/_version.py"
write_to_template = "__version__ = '{version}'\n"
[tool.ruff.lint]
select = [
# pyflakes
"F",
# pycodestyle
"E", "W",
# isort
"I",
# flake8-logging-format
"G",
# flake8-tidy-imports
"TID",
]