-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (35 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mongogbackup"
version = "0.1.1"
dependencies = [
"google-auth >= 2.31.0",
"google-auth-oauthlib >= 1.2.0",
"google-auth-httplib2 >= 0.2.0",
"google-api-python-client>= 2.136.0",
"requests >= 2.31.0",
"pymongo >= 4.8.0",
"cryptography >= 42.0.8"
]
requires-python = ">=3.8"
authors = [
{name = "DevCom, IIT Bombay", email = "[email protected]"}
]
maintainers = [
{name = "DevCom, IIT Bombay", email = "[email protected]"}
]
description = "Securely Backup MongoDB to Google Drive"
readme = "README.md"
license = {file="LICENSE"}
keywords = ["mongodb", "backup", "google", "drive", "remote", "gdrive", "mongogb", "mongogbackup", "mongo"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
]
[project.urls]
Repository = "https://github.com/DevCom-IITB/mongogbackup"
Issues = "https://github.com/DevCom-IITB/mongogbackup/issues"