2020-07-25 13:06:01 +08:00
|
|
|
[tool.poetry]
|
|
|
|
name = "safire"
|
2020-07-28 11:32:16 +08:00
|
|
|
version = "0.1.1"
|
2020-07-26 15:03:45 +08:00
|
|
|
description = "A flexible tool to create and delete Google / GSuite service accounts to be used with shared drives."
|
2020-07-25 13:06:01 +08:00
|
|
|
authors = ["88lex"]
|
2020-07-26 15:03:45 +08:00
|
|
|
keywords = ["gsuite", "sas", "service accounts"]
|
|
|
|
readme = "README.md"
|
2020-07-25 13:06:01 +08:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.7"
|
|
|
|
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"
|
2020-07-28 11:32:16 +08:00
|
|
|
uuid = "^1.30"
|
2020-07-25 13:06:01 +08:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest = "^5.2"
|
|
|
|
yapf = "^0.30.0"
|
|
|
|
pylint = "^2.5.3"
|
|
|
|
|
2020-07-28 11:32:16 +08:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
safire = "safire.safire:main"
|
|
|
|
|
2020-07-25 13:06:01 +08:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|
2020-07-26 15:03:45 +08:00
|
|
|
|