-
Notifications
You must be signed in to change notification settings - Fork 74
/
pyproject.toml
47 lines (39 loc) · 1.21 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
[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-tick"
authors = [
{name = "conda-forge-tick development team", email = "condaforge@gmail.com"},
]
description = "Flagship repo for cf-regro-autotick-bot"
dynamic = ["version"]
license = {file = "License"}
readme = "README.md"
requires-python = ">=3.11"
[project.urls]
home = "https://github.com/regro/cf-scripts"
[project.scripts]
conda-forge-tick = "conda_forge_tick.cli:main"
conda-forge-tick-container = "conda_forge_tick.container_cli:cli"
[tool.setuptools]
include-package-data = true
zip-safe = false
packages = {find = {exclude=["tests*", "scripts*", "docs*", "autotick-bot*", "planning*"]}}
package-data = {conda_forge_tick = ["*.xsh", "*.yaml"]}
package-dir = {conda_forge_tick = "conda_forge_tick"}
[tool.setuptools_scm]
write_to = "conda_forge_tick/_version.py"
write_to_template = "__version__ = '{version}'\n"
[tool.ruff]
extend-exclude = ["conda_forge_tick/migrators/disabled/legacy.py"]
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]
preview = true
[tool.ruff.lint.pycodestyle]
max-line-length = 120