-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (59 loc) · 1.14 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
[build-system]
requires = ["setuptools >=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "orko"
authors = [
{ name = "Marcelo Duarte Trevisani", email = "marceloduartetrevisani@gmail.com" },
]
description = "Project to generate recipes for conda packages"
readme = "README.md"
keywords = ["conda", "environment", "pyproject.toml"]
license = { text = "Apache-2.0" }
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"rich-click",
"click",
"tomli",
"packaging",
"pyyaml",
"conda-souschef"
]
[project.scripts]
orko = "orko.cli:orko_cli"
[project.optional-dependencies]
testing = [
"pytest",
"pytest-xdist[psutil]",
"pytest-cov",
"pip",
]
dev = [
"pre-commit",
]
[tool.setuptools_scm]
write_to = "src/orko/_version.py"
[tool.black]
target-version = ["py310"]
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.pytest_cache
| _build
| buck-out
| build
| dist
| tests/data
)/
'''
[tool.setuptools.packages.find]
include = ["orko", "orko.*"]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]