forked from thisbejim/Pyrebase
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 803 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 803 Bytes
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.9.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>=1.0.0',
'requests>=2.31',
'urllib3>=1.21.1,<2',
'google-cloud-storage>=2.18.2',
'oauth2client>=4.1.2',
'python-jwt>=2.0.1',
'pycryptodome>=3.6.4'
]
)