-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1.12 KB
/
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
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
from os import path
from io import open
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pyfireconnect',
version='1.0.3',
url='https://github.com/quintuslabs/pyfireconnect',
description='A simple python wrapper for the Firebase API compatible with Python 3.7, supports social signup',
long_description=long_description,
long_description_content_type='text/markdown',
author='Quintus Labs',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
keywords=('Firebase','Python 3',),
packages=find_packages(exclude=['tests']),
install_requires=[
'requests==2.22.0',
'gcloud==0.18.3',
'oauth2client==4.1.3',
'requests_toolbelt==0.9.1',
'python_jwt==3.2.4',
'pycryptodome==3.9.0',
'urllib3==1.25.5'
]
)