-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.35 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
[build-system]
requires = ["poetry>=1.4.1"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 120
target-version = ['py38', 'py39', 'py310', 'py311']
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| setup.py
)/
'''
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
line_length = 120
multi_line_output = 3
skip = "setup.py"
use_parentheses = true
verbose = true
[tool.poetry]
name = "barbara"
version = "2.3.0"
description = "Environment variable management"
authors = ["Matthew de Verteuil <onceuponajooks@gmail.com>"]
license = "GPL-3.0"
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Topic :: Software Development",
"Topic :: System",
"Topic :: Terminals"
]
packages = [
{include = "barbara"}
]
[tool.poetry.dependencies]
python = "==3.*,>=3.7.0"
click = "==7.*,>=7.0.0"
poetry-version = "==0.*,>=0.1.3"
python-dotenv = "==0.*,>=0.10.1"
pyyaml = ">=5,<7"
[tool.poetry.dev-dependencies]
pre-commit = "==2.*"
pytest = "==7.*"
pytest-cov = "==4.*"
[tool.poetry.scripts]
barb = "barbara.cli:barbara_develop"