-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
79 lines (73 loc) · 1.46 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
[tool.blue]
line-length = 79 # this is the default
[tool.isort]
ensure_newline_before_comments = true
line_length = 79
multi_line_output = 3
include_trailing_comma = true
skip_glob = ["docs/*", "*.egg-info"]
[tool.poetry]
name = "conda-on-air"
version = "0.0.1" # semantic-release
description = "A project that allows the local build and installation of an existent conda-forge feedstock"
authors = ["Ivan Ogasawara <ivan.ogasawara@gmail.com>"]
license = "BSD 3 Clause"
include = [
"*.cfg",
"*.ini",
"*.js",
"*.json",
"*.lock",
"*.md",
"*.py",
"*.sh",
"*.rst",
"*.txt",
"*.toml",
"*.yml",
"*.yaml",
".github",
"conda",
"docker",
"docs",
".dockerignore",
".env.tpl",
".gitignore",
"Makefile",
]
exclude = [
".git/*",
".env*",
]
[tool.poetry.dependencies]
python = "^3.8.1"
pyyaml = "^6.0"
urllib3 = "<2"
sh = "^2.0.4"
types-pyyaml = "^6.0.12.10"
[tool.poetry.dev-dependencies]
pytest = "^7"
blue = "^0.9.1"
isort = "^5"
pre-commit = "2"
flake8 = "^4"
mypy = "^0.931"
cookiecutter = "^1.7.3"
pytest-cov = "^3.0.0"
Jinja2 = "<3.1.0"
mkdocs = ">=1.2.3,<2"
mkdocs-exclude = ">=1.0.2,<2"
mkdocs-jupyter = ">=0.20.0,<1"
mkdocs-literate-nav = ">=0.4.1,<1"
mkdocs-macros-plugin = ">=0.6.3,<1"
mkdocs-material = ">=8.2.1,<9"
mkdocstrings = ">=0.17.0,<0.18.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.mypy]
ignore_missing_imports = true