-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (33 loc) · 1.11 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
[tool.poetry]
name = "envchain-shellenv"
version = "1.0.2"
description = "envchain shellenv - prints export statements for your secrets in the keychain"
authors = ["Xinyuan Chen <45612704+tddschn@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/tddschn/envchain-shellenv"
repository = "https://github.com/tddschn/envchain-shellenv"
classifiers = [
"Topic :: Utilities",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Framework :: AsyncIO",
]
keywords = ["envchain", "shellenv", "env", "environment", "keychain", "keyring"]
[tool.poetry.scripts]
envchain-shellenv = "envchain_shellenv.cli:main_sync"
eesh = "envchain_shellenv.cli:main_sync"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tddschn/envchain-shellenv/issues"
[tool.poetry.dependencies]
python = "^3.10"
keyring = { version = "^23.5.1", extras = ["keyring"] }
PyYAML = "^6.0"
[tool.poetry.group.dev.dependencies]
ipython = "^8.4.0"
rich = "^12.4.4"
black = "^22.3.0"
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"