forked from nhorvath/Pyrebase4
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.41 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (32 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
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='empyrebase',
version='2.5.0',
url='https://github.com/emrothenberg/empyrebase',
description="A simple python wrapper for the Firebase API with current deps. Includes Realtime Database, Firestore, Authentication, and Storage.",
long_description=long_description,
long_description_content_type='text/markdown',
author='emrothenberg',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.11',
],
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',
packages=find_packages(exclude=['tests']),
install_requires=[
'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'
]
)