-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
46 lines (39 loc) · 1.24 KB
/
pyproject.toml
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
[tool.poetry]
name = "flask-firebase-admin"
version = "0.2.4"
description = "Firebase for Flask"
authors = ["Andrew Ross <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/andrewrosss/flask-firebase-admin"
# repository = "https://github.com/andrewrosss/flask-firebase-admin"
# documentation = "https://github.com/andrewrosss/flask-firebase-admin"
keywords = ["flask", "firebase", "admin", "auth"]
classifiers = [
"Programming Language :: Python :: 3.0",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Framework :: Flask",
"Development Status :: 4 - Beta",
]
[tool.poetry.dependencies]
python = "^3.7"
flask = ">=1.0,<3.0"
firebase-admin = "^4.0.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.8.3"
pylint = "^2.5.3"
reorder-python-imports = "^2.3.5"
bump2version = "^1.0.0"
pytest-mock = "^3.5.1"
pytest-flask = "^1.2.0"
pytest-cov = "^2.11.1"
pre-commit = "^2.15.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"