-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (44 loc) · 1000 Bytes
/
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
[tool.poetry]
name = "onep"
version = "0.6.1"
description = "1Password CLI helper"
authors = ["Antoine POPINEAU <antoine@popineau.eu>"]
license = "MIT"
repository = "https://github.com/apognu/1p"
readme = "README.md"
classifiers = [
"Topic :: Security",
"Topic :: Utilities"
]
keywords = ["password", "1password", "cli", "secrets"]
packages = [
{ include = "onep/**/*.py" }
]
[tool.poetry.dependencies]
python = ">=3.9"
inquirer = "^2.9.2"
keyring = "^23.5.0"
termcolor = "^1.1.0"
prettytable = "^3.3.0"
validators = "^0.19.0"
phonenumbers = "^8.12.48"
pyperclip = "^1.8.2"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
mypy = "^0.950"
pytest = "^7.1.2"
mock = "^4.0.3"
pytest-cov = "^3.0.0"
[tool.poetry.scripts]
1p = "onep.onep:main"
[tool.black]
line-length = 200
[tool.mypy]
exclude = [".venv/", "tests/"]
strict = true
warn_no_return = false
install_types = true
non_interactive = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"