-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
91 lines (81 loc) · 2.22 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
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hatch-conda"
description = "Hatch plugin for conda environments"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
keywords = [
"conda",
"environment",
"hatch",
"plugin",
]
authors = [
{ name = "OldGrumpyViking", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Hatch",
]
dependencies = [
"hatch>=1.2.0",
"hatchling>=1.0.0",
"pexpect~=4.8",
]
dynamic = ["version"]
[project.urls]
History = "https://github.com/OldGrumpyViking/hatch-conda/blob/master/HISTORY.md"
Issues = "https://github.com/OldGrumpyViking/hatch-conda/issues"
Source = "https://github.com/OldGrumpyViking/hatch-conda"
[project.entry-points.hatch]
conda = "hatch_conda.hooks"
[tool.hatch.version]
path = "hatch_conda/__about__.py"
[tool.mypy]
disallow_untyped_defs = false
follow_imports = "normal"
ignore_missing_imports = true
pretty = true
show_column_numbers = true
warn_no_return = false
[tool.black]
target-version = ["py37"]
line-length = 120
[tool.isort]
py_version = "37"
profile = "black"
include_trailing_comma = true
use_parentheses = true
src_paths = ["hatch_conda", "tests"]
line_length = 120
[tool.coverage.run]
branch = true
parallel = true
source_pkgs = ["hatch_conda", "tests"]
omit = [
"hatch_conda/__about__.py",
]
[tool.coverage.report]
fail_under = 0
show_missing = true
skip_covered = true
skip_empty = true
exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:", "raise NotImplementedError"]
[tool.flake8]
exclude = [".direnv", ]
select = ["B","C","E","F","W","B001","B003","B006","B007","B301","B305","B306","B902","Q001","Q002","Q003"]
ignore = ["E203","E722","W503"]
max-line-length = 120