forked from conda/conda-libmamba-solver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (62 loc) · 1.56 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "conda-libmamba-solver"
description = "The fast mamba solver, now in conda"
readme = "README.md"
authors = [
{name = "Anaconda, Inc.", email = "[email protected]"}
]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
requires-python = ">=3.8"
dependencies = [
"conda >=23.7.3",
"libmambapy >=1.5.6,<2.0.0dev0",
"boltons >=23.0.0",
]
dynamic = [
"version"
]
[project.urls]
homepage = "https://github.com/conda/conda-libmamba-solver"
[project.entry-points.conda]
conda-libmamba-solver = "conda_libmamba_solver.plugin"
[tool.hatch.version]
source = "vcs"
[tool.black]
line-length = 99
target-version = ['py37', 'py38', 'py39', 'py310']
exclude = '''
(
^/conda_libmamba_solver/_libmamba\.py
| ^/tests/_reposerver\.py
)
'''
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--color=yes",
"--tb=native",
"--strict-markers"
]
markers = [
"integration: integration tests that usually require an internet connect",
"slow: slow running tests",
]
[tool.isort]
profile = "black"
filter_files = true
[tool.ruff]
line-length = 99