-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (25 loc) · 885 Bytes
/
setup.py
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
from setuptools import setup
setup(
name='firebase_rtdb_pagination',
packages=['firebase_rtdb_pagination'],
version='1.0.1',
license='MIT',
description='Firebase Realtime DB Pagination',
author='Jay Milagroso',
author_email='[email protected]',
url='https://github.com/jmilagroso/firebase_rtdb_pagination',
download_url='https://github.com/jmilagroso/firebase_rtdb_pagination/archive/refs/tags/1.0.1tar.gz',
keywords=[
'Firebase',
'RealtimeDB',
'Pagination'],
install_requires=['firebase-admin'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)