-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.17 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
[tool.poetry]
name = "cli-buddy"
version = "0.2.6"
description = "The fastest, simplest way to create CLIs in Python"
authors = ["J.I. Cruz <[email protected]>"]
readme = "README.md"
repository = "https://github.com/jicruz96/cli-buddy"
keywords = [
"data validation",
"dataclasses",
"validation",
"models",
"meta-programming",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
packages = [{ include = "cli_buddy", from = "." }]
include = ["cli_buddy/**/*.pyi"]
[tool.poetry.dependencies]
python = "^3.11"
easydatamodel = ">=0.3.2"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
pre-commit = "^3.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 120
[tool.black]
line-length = 120
target-version = ['py311']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \venv
| _build
| buck-out
| build
| dist
)/
)
'''