forked from thisbejim/Pyrebase
-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.py
27 lines (26 loc) · 794 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
26
27
from setuptools import setup, find_packages
setup(
name='Pyrebase4',
version='4.8.0',
url='https://github.com/nhorvath/Pyrebase4',
description='A simple python wrapper for the Firebase API with current deps',
author='nhorvath',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
],
keywords='Firebase',
packages=find_packages(exclude=['tests']),
install_requires=[
'requests-toolbelt>=0.7.1,<1.0',
'requests>=2.31',
'urllib3>=1.21.1,<2',
'gcloud>=0.18.3',
'oauth2client>=4.1.2',
'python-jwt>=2.0.1',
'pycryptodome>=3.6.4'
]
)