forked from conda/conda-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.28 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "conda_index"
authors = [
{ name = "Anaconda, Inc. & Contributors", email = "conda@continuum.io" },
]
license = { file = "LICENSE" }
readme = "README.md"
dynamic = ["version", "description"]
requires-python = ">=3.8"
dependencies = [
"click >=8",
"conda >=4.14.0", # not available on pypi
"conda-package-streaming >=0.7.0",
"filelock",
"jinja2",
"more-itertools",
"ruamel.yaml",
"zstandard",
]
[project.optional-dependencies]
test = [
"conda-build >=3.21.0",
"conda-package-handling >=1.9.0",
"coverage[toml]",
"pytest >=7",
"pytest-cov",
"pytest-mock",
"fsspec[http]"
]
docs = [
"furo",
"sphinx",
"sphinx-click",
"myst-parser",
"mdit-py-plugins>=0.3.0",
]
[project.scripts]
# conda-build also provides conda-index script.
# require python -m conda_index for the moment to avoid the conflict.
[project.entry-points.conda]
index = "conda_index.plugin"
[project.urls]
Home = "https://github.com/conda/conda-index"
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
[tool.coverage.run]
concurrency = ["multiprocessing", "thread"]
source = ["conda_index"]
[tool.isort]
profile = "black"