-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.43 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
[tool.black]
target-version = ["py38", "py39", "py310"]
[tool.isort]
profile = "black"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "conda_package_streaming"
authors = [
{ name = "Anaconda, Inc. & Contributors", email = "[email protected]" },
]
description = "An efficient library to read from new and old format .conda and .tar.bz2 conda packages."
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = ["requests", "zstandard >=0.15"]
[project.optional-dependencies]
test = [
"pytest >=7",
"pytest-cov",
"pytest-mock",
"boto3",
"boto3-stubs[essential]",
"bottle",
"conda",
"conda-package-handling >=2",
]
docs = ["furo", "sphinx", "myst-parser", "mdit-py-plugins>=0.3.0"]
[project.urls]
Home = "https://github.com/conda/conda-package-streaming"
Documentation = "https://conda.github.io/conda-package-streaming/"
# pyproject.toml
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--cov=conda_package_streaming"
testpaths = ["tests"]
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "if TYPE_CHECKING:"]
[tool.coverage.run]
source = ["conda_package_streaming/", "tests/"]