-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 2.01 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
[project]
name = "pydrive4"
version = "0.0.3"
description = "PyDrive4: Modern Python library for Google Drive API v3 - Easy file upload, download, folder management with OAuth2, service account & ADC authentication. Simplified wrapper for google-api-python-client"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
keywords = ["google-drive", "google-api", "cloud-storage", "file-management", "pydrive", "pydrive2", "pydrive4", "google-drive-api-v3", "google-drive-python", "drive-api-wrapper", "google-drive-automation", "python-google-drive", "drive-file-upload", "drive-folder-management", "google-drive-sdk", "google-api-python-client", "oauth2-google-drive", "service-account-google-drive", "application-default-credentials", "google-drive-backup", "drive-api-v3", "python-cloud-storage", "google-drive-sync", "drive-file-download", "google-drive-search", "drive-api-simplified", "google-drive-library", "python-drive-client"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"google-api-python-client>=2.100.0",
"google-auth>=2.15.0,<2.42.0", # Capped due to google-auth-oauthlib compatibility
"google-auth-oauthlib>=1.0.0,<=1.2.3",
"google-auth-httplib2>=0.2.0",
]
[project.urls]
Homepage = "https://github.com/SSujitX/pydrive4"
Repository = "https://github.com/SSujitX/pydrive4"
Documentation = "https://github.com/SSujitX/pydrive4#readme"
Issues = "https://github.com/SSujitX/pydrive4/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["pydrive4"]