mirror of
https://github.com/88lex/safire.git
synced 2025-02-24 13:56:23 +08:00
42 lines
1 KiB
TOML
42 lines
1 KiB
TOML
[tool.poetry]
|
|
name = "safire"
|
|
version = "0.2.0"
|
|
description = "A flexible tool to create and delete Google / GSuite service accounts to be used with shared drives."
|
|
authors = ["88lex"]
|
|
keywords = ["gsuite", "sas", "service accounts"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.6.1"
|
|
requests = "^2.24.0"
|
|
fire = "^0.3.1"
|
|
google-api-python-client = "^1.10.0"
|
|
pandas = "^1.0.5"
|
|
google-auth-oauthlib = "^0.4.1"
|
|
oauth2client = "^4.1.3"
|
|
openpyxl = "^3.0.4"
|
|
uuid = "^1.30"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^5.2"
|
|
yapf = "^0.30.0"
|
|
pylint = "^2.5.3"
|
|
|
|
[tool.poetry.scripts]
|
|
safire = "safire.safire:main"
|
|
|
|
[tool.dephell.main]
|
|
# read from poetry format
|
|
from = {format = "poetry", path = "pyproject.toml"}
|
|
# drop dev-dependencies
|
|
envs = ["main"]
|
|
# and convert into setup.py
|
|
to = {format = "setuppy", path = "setup.py"}
|
|
|
|
[tool.dephell.requirements]
|
|
from = {format = "poetry", path = "pyproject.toml"}
|
|
to = {format = "pip", path = "requirements.txt"}
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|
|
|