-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.66 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "googledrive"
version = "0.5.1"
description = "Library and cli to manage and interact with your Google Drive"
authors = [
{name = "Eduardo Garcia Ruiz",email = "garciaruiz.edu+maintain+google-drive-python@gmail.com"}
]
maintainers = [
{name = "Eduardo Garcia Ruiz",email = "garciaruiz.edu+maintain+google-drive-python@gmail.com"}
]
license = {text = "Apache-2.0"}
license-files = [
"LICENSE*",
]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9.21"
dependencies = [
"google-api-core==1.31.5",
"google-api-python-client==2.166.0",
"google-auth==1.35.0",
"google-auth-httplib2==0.2.0",
"google-auth-oauthlib==0.4.1",
"googleapis-common-protos==1.56.0",
"dataclasses==0.6",
"click==8.1.7"
]
keywords = ["google", "drive", "cli"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries",
]
[project.scripts]
google-drive = "googledrive.cli:googledrive"
[project.urls]
Homepage = "https://github.com/eduardogr/google-drive-python"
Documentation = "https://github.com/eduardogr/google-drive-python"
Repository = "https://github.com/eduardogr/google-drive-python.git"
Issues = "https://github.com/eduardogr/google-drive-python/issues"
Changelog = "https://github.com/eduardogr/google-drive-python/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["googledrive"]
[tool.poetry]
[tool.poetry.group.dev.dependencies]
pylint = "2.16.0b1"
autopep8 = "2.0.1"
pytest = "8.3.5"
pytest-cov = "6.1.1"
ipython = "7.23.1"
twine = "6.1.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"