forked from agritheory/cloud_storage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (48 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
58 lines (48 loc) · 1.29 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
49
50
51
52
53
54
55
56
57
58
[project]
name = "cloud_storage"
version = "15.7.2"
description = "Frappe App for integrating with cloud storage applications"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "AgriTheory", email = "support@agritheory.dev" }
]
[tool.poetry]
name = "cloud_storage"
version = "15.9.1"
description = "Frappe App for integrating with cloud storage applications"
authors = ["AgriTheory <support@agritheory.dev>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
boto3 = "^1.26.41"
botocore = "^1.29.41"
python-magic = "^0.4.27"
moto = {version = "^4.1.6", extras = ["s3"]}
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.codespell]
skip = "CHANGELOG.md"
[tool.pytest.ini_options]
addopts = "--cov=cloud_storage --cov-report term-missing"
[tool.black]
line-length = 99
[tool.isort]
line_length = 99
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
indent = "\t"
[tool.semantic_release]
version_toml = ["pyproject.toml:tool.poetry.version"]
version_variable = [
"cloud_storage/__init__.py:__version__"
]
[tool.semantic_release.branches.version]
match = "version-15"