forked from nurdtechie98/drive-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 970 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 970 Bytes
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
[tool.poetry]
name = "excursion-cli"
version = "0.1.0"
description = "A command line utility for interacting with Google Drive"
authors = ["kevinshurtz <kevin.shurtz@kevinshurtz.net>"]
readme = "README.md"
packages = [{ include = "excursion_cli", from = "src" }]
[tool.poetry.dependencies]
python = "^3.11"
requests = "2.21.0"
click = "7.0"
colorama = "0.4.6"
windows-curses = { markers = "platform_system == \"Windows\"", version = "^2.3.1" }
pick = "0.6.4"
google-api-python-client = "1.7.8"
oauth2client = "4.1.3"
prettytable = "0.7.2"
httplib2 = "0.12.1"
pyfiglet = "0.8.post1"
[tool.poetry.scripts]
excursion-cli = 'excursion_cli.dcli:cli'
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
pylint = "^3.0.2"
autopep8 = "^2.0.4"
[tool.autopep8]
max_line_length = 120
aggressive = 3
[tool.pylint.messages_control]
max-line-length = 120
disable = ["missing-docstring"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"