-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (66 loc) · 1.31 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
72
73
74
75
76
77
78
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=42", "setuptools-scm[toml]>=6.2"]
[project]
dependencies = ["textual>=0.32,<0.33"]
description = "A Text User Interface for conda"
dynamic = ["version"]
license = {text = "BSD-3-Clause"}
name = "conda-tui"
readme = "README.md"
requires-python = ">=3.9"
[project.entry-points.conda]
tui = "conda_tui.app"
[project.optional-dependencies]
dev = [
"mypy",
"pytest",
"textual-dev",
"tox"
]
docs = [
"sphinx>=5.1.1",
"sphinx-autobuild>=2021.3.14",
"sphinx-autodoc-typehints>=1.19.2",
"myst-parser>=0.18.0",
"pydata-sphinx-theme>=0.9.0"
]
[project.scripts]
conda-tui = "conda_tui.app:run"
[tool.isort]
force_single_line = true
profile = "black"
[tool.mypy]
disallow_untyped_defs = true
files = [
"src/**/*.py"
]
python_version = "3.9"
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = "conda.*"
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = "textual.*"
[tool.setuptools_scm]
write_to = "src/conda_tui/_version.py"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py39,py310,py311
isolated_build = True
requires = tox-conda
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
[testenv]
deps =
pytest
conda_deps =
conda >=22.11.0
conda_channels =
conda-forge
commands = pytest
"""