forked from conda/grayskull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (77 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools >=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "grayskull"
authors = [
{ name = "Marcelo Duarte Trevisani", email = "[email protected]" },
]
description = "Project to generate recipes for conda packages"
readme = "README.md"
keywords = ["conda"]
license = { text = "Apache-2.0" }
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4",
"colorama",
"conda-souschef >=2.2.3",
"packaging >=21.3",
"pip",
"pkginfo",
"progressbar2 >=3.53.0",
"rapidfuzz >=3.0.0",
"requests",
"ruamel.yaml >=0.16.10",
"ruamel.yaml.jinja2",
"setuptools >=30.3.0",
"semver >=3.0.0,==3.0.*",
"stdlib-list",
"tomli; python_version < '3.11'",
"tomli-w",
]
[project.optional-dependencies]
testing = [
"mock",
"pytest",
"pytest-console-scripts",
"pytest-cov",
"pytest-mock",
"setuptools-scm",
]
docs = [
"furo",
"sphinx",
"sphinx-argparse",
"myst-parser",
"mdit-py-plugins>=0.3.0",
]
[project.scripts]
grayskull = "grayskull.main:main"
greyskull = "grayskull.main:main"
conda-grayskull = "grayskull.main:main"
conda-greyskull = "grayskull.main:main"
[project.urls]
Source = "https://github.com/conda/grayskull"
[tool.setuptools.packages.find]
include = ["grayskull", "grayskull.*"]
[tool.setuptools_scm]
write_to = "grayskull/_version.py"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"I", # isort
]
[tool.ruff.lint.per-file-ignores]
"tests/data/**" = ["E", "F"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "win-64", "osx-arm64"]
[tool.pixi.pypi-dependencies]
grayskull = { path = ".", editable = true }
[tool.pixi.environments]
default = { solve-group = "default" }
docs = { features = ["docs"], solve-group = "default" }
testing = { features = ["testing"], solve-group = "default" }