-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.4 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
[tool.poetry]
name = "project-templates"
version = "1.0.0"
description = "Something."
authors = ["Dario Zhang <[email protected]>"]
license = "MIT license"
readme = "README.md"
packages = [{include = "project_templates", from = "src"}]
[tool.poetry.dependencies]
python = "^3.8.10,<3.12"
arrow = "1.2.3"
toolz = "0.12.0"
ruamel-yaml = "0.17.21"
tqdm = "4.64.1"
tabulate = "0.9.0"
wcwidth = "0.2.6"
typer = "0.7.0"
pydantic = "1.10.5"
[tool.poetry.group.dev.dependencies]
py = "^1.11.0"
pytest = "^7.2.1"
pytest-cover = "^3.0.0"
pytest-html = "^3.1.1"
black = "^23.1.0"
isort = "^5.12.0"
flake8 = "^6.0.0"
pylint = "^2.16.2"
tox = "^3.28.0"
invoke = "^1.7.3"
setuptools = "^67.3.2"
sphinx = {version = "3.4.0", optional = true}
sphinx-rtd-theme = {version = "0.5.0", optional = true}
recommonmark = {version = "0.7.1", optional = true}
sphinx-markdown-tables = {version = "0.0.15", optional = true}
pyinstaller = "^5.8.0"
memory-profiler = "^0.61.0"
[tool.poetry.extras]
doc = ["sphinx", "sphinx-rtd-theme", "recommonmark", "sphinx-markdown-tables"]
[tool.black]
line-length = 90
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 90
known_third_party = ""
skip = "test,tests"
[tool.coverage.run]
# include source files
source=["./src/"]
# exclude source files
omit=[]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"