-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
84 lines (74 loc) · 2.08 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
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "thanakan"
version = "1.2.1"
description = "Awesome `thanakan` is a Python cli/package created with https://github.com/TezRomacH/python-package-template"
readme = "README.md"
authors = [
"codustry <[email protected]>"
]
license = "MIT"
repository = "https://github.com/codustry/thanakan"
homepage = "https://github.com/codustry/thanakan"
# Keywords description https://python-poetry.org/docs/pyproject/#keywords
keywords = [] # Update me
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = [ # Update me
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.scripts]
[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^1.7.3"
crccheck = "^1.0"
parse-with-dot-access = "^1.18.0"
locate = "^1.1.0"
furl = "^2.1.0"
fastapi-utils = "^0.2.1"
loguru = "^0.6.0"
google-cloud-documentai = "^1.4.0"
Pillow = "^8.1.0"
pyzbar-x = "^0.2.1"
onepasswordconnectsdk = "^1.1.0"
google-cloud-secret-manager = "^2.7.2"
httpx-auth = "^0.14.1"
httpx = "^0.22.0"
[tool.poetry.dev-dependencies]
darglint = "^1.5.4"
isort = "^5.5.4"
pyupgrade = "^2.7.2"
black = "^22.3.0"
mypy = "^0.942"
bandit = "^1.6.2"
safety = "^1.9.0"
pytest = "^7.1.1"
pylint = "^2.5.3"
pydocstyle = "^6.1.1"
pre-commit = "^2.7.1"
pytest-asyncio = "^0.18.3"
jupyterlab = "^3.0.8"
pytest-docker-compose = "^3.2.1"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
ipywidgets = "^7.6.5"
streamlit = "^1.2.0"
[tool.black]
# https://github.com/psf/black
line-length = 80
target-version = ["py38"]
[tool.isort]
# https://github.com/timothycrosley/isort/
known_typing = "typing,types,typing_extensions,mypy,mypy_extensions"
sections = "FUTURE,TYPING,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
include_trailing_comma = true
default_section = "FIRSTPARTY"
multi_line_output = 3
indent = 4
force_grid_wrap = 0
use_parentheses = true
line_length = 80