-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.1 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
46
47
48
49
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm>=8",
"tomli>=1.0.0; python_version < '3.11'",
]
build-backend = "setuptools.build_meta"
[project]
name = "conda-forge-feedstock-ops"
authors = [
{name = "conda-forge-tick development team", email = "[email protected]"},
]
description = "A package of containerized feedstock maintenance operations"
dynamic = ["version"]
license = {file = "LICENSE"}
readme = "README.md"
[project.urls]
home = "https://github.com/conda-forge/conda-forge-feedstock-ops"
[project.scripts]
conda-forge-feedstock-ops-container = "conda_forge_feedstock_ops.__main__:main_container"
[tool.setuptools.packages.find]
exclude = ['tests*']
[tool.setuptools_scm]
write_to = "conda_forge_feedstock_ops/_version.py"
write_to_template = "__version__ = '{version}'\n"
[tool.ruff.lint]
ignore = [
"E501", # https://docs.astral.sh/ruff/faq/#is-the-ruff-linter-compatible-with-black
]
select = [
# pyflakes
"F",
# pycodestyle
"E", "W",
# isort
"I",
# pypugrade
"UP",
# flake8-logging-format
"G",
# flake8-tidy-imports
"TID",
]