-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (45 loc) · 1.65 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (45 loc) · 1.65 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 2022 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Setup for Firebase Functions Python.
"""
from setuptools import find_packages, setup
install_requires = [
'flask>=2.1.2', 'functions-framework>=3.0.0', 'firebase-admin>=6.0.0',
'pyyaml>=6.0', 'typing-extensions>=4.4.0', 'cloudevents==1.9.0',
'flask-cors>=3.0.10', 'pyjwt[crypto]>=2.5.0', 'google-events>=0.5.0',
'google-cloud-firestore>=2.11.0'
]
dev_requires = [
'pytest>=7.1.2', 'setuptools>=63.4.2', 'pylint>=2.16.1',
'pytest-cov>=3.0.0', 'mypy>=1.0.0', 'sphinx>=6.1.3',
'sphinxcontrib-napoleon>=0.7', 'yapf>=0.32.0', 'toml>=0.10.2',
'google-cloud-tasks>=2.13.1'
]
setup(
name='firebase_functions',
version='0.0.1',
description='Firebase Functions Python SDK',
install_requires=install_requires,
extras_require={'dev': dev_requires},
packages=find_packages(where='src'),
package_dir={'': 'src'},
python_requires='>=3.10',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3.10',
],
)