forked from channel-mirrors/conda-oci-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.16 KB
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "conda-oci-mirror"
authors = [
{name = "conda-oci-mirror team", email = "conda_oci_mirror@issues.github.com"},
]
description = "Tools to mirror conda packages to an OCI registry."
readme = "README.md"
requires-python = ">=3.7"
keywords = ["mamba", "conda", "oci"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
dependencies = [
"click",
"requests",
"oras==0.1.14",
"conda-package-handling",
"zstandard",
"packaging",
]
dynamic = ["version"]
[project.scripts]
conda-oci = "conda_oci_mirror.cli:main"
[tool.setuptools_scm]
write_to = "conda_oci_mirror/_version.py"
[tool.isort]
profile = "black"
skip = []
[tool.black]
exclude = "^env/"