-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 878 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
28
29
30
31
32
33
[tool.poetry]
name = "firegorest"
version = "0.1.0"
description = "Some utilties to work with Google Firestore API."
authors = ["Nguyễn Hồng Quân <ng.hong.quan@gmail.com>"]
maintainers = [
"Nguyễn Hồng Quân <ng.hong.quan@gmail.com>"
]
license = "Apache-2.0"
readme = "README.rst"
repository = "https://github.com/sunshine-tech/FireGoRest.git"
classifiers = [
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet",
"Topic :: Utilities"
]
keywords = ["google", "cloud", "firestore", "functions"]
[tool.poetry.dependencies]
python = "^3.7"
importlib_metadata = "^1.4.0"
iso8601 = "^0.1.12"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pygments = "^2.5.2"
pytest-flake8 = "^1.0.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"