forked from nhorvath/Pyrebase4
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.41 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (42 loc) · 1.41 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "empyrebase"
version = "2.5.0"
description = "A simple python wrapper for the Firebase API with current deps. Includes Realtime Database, Firestore, Authentication, and Storage."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [
{ name = "emrothenberg" }
]
keywords = [
"Firebase", "Pyrebase", "Google", "Empyrebase", "data", "database",
"client", "client-side", "firestore", "realtime", "real-time", "storage",
"authentication", "auth", "stream", "firebase-auth", "firebase-database",
"firebase-storage", "firebase-functions", "firebase-firestore", "NoSQL",
"REST", "OAuth", "JWT", "user-management", "serverless", "event-driven",
"cloud", "auto-update", "token-refresh", "CRUD", "realtime-stream"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"requests-toolbelt>=1.0.0",
"requests>=2.31",
"urllib3>=1.21.1",
"google-cloud-storage>=2.18.2",
"google-auth>=2.38.0",
"pyjwt>=2.8.0",
"pycryptodome>=3.6.4",
"packaging>=24.2",
"web-browser>=0.0.1",
]
[project.urls]
Homepage = "https://github.com/emrothenberg/empyrebase"
[tool.setuptools.packages.find]
exclude = ["tests"]