forked from 88lex/safire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 1.02 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
[tool.poetry]
name = "safire"
version = "0.2.6"
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"