-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 859 Bytes
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
[tool.poetry]
name = "skylog-sdk"
version = "0.1.15"
description = "skylog python sdk"
authors = ["vahidtwo <vahidtwo@gmail.com>"]
repository = "https://github.com/vahidtwo/skylog-sdk"
documentation = "https://vahidtwo.github.io/skylog-sdk/"
readme = "README.md"
packages = [
{include = "skylog"}
]
[tool.poetry.dependencies]
python = ">=3.8.12"
requests = ">=2.31"
python-decouple = ">=3.6"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.4.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.2"
mkdocs-material = "^9.2.7"
mkdocstrings = {extras = ["python"], version = "^0.23.0"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 121
target-version = ['py38']
preview = true
[tool.coverage.report]
skip_empty = true
[tool.coverage.run]
branch = true
source = ["skylog"]