-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (36 loc) · 1016 Bytes
/
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
[tool.poetry]
name = "reflex-firebase"
version = "0.0.11"
description = ""
authors = ["neka-nat <[email protected]>"]
license = "MIT"
packages = [
{ include = "reflex_firebase", from = "custom_components" }
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
reflex = "^0.5.5"
python-dotenv = "^1.0.1"
pyrebase4 = "^4.8.0"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
isort = "^5.13.2"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "reflex-firebase"
version = "0.0.11"
description = "Reflex custom component firebase"
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.9,<4.0"
authors = [{ name = "", email = "[email protected]" }]
keywords = ["reflex","reflex-custom-components"]
dependencies = ["reflex>=0.4.2"]
classifiers = ["Development Status :: 4 - Beta"]
[project.urls]
[project.optional-dependencies]
dev = ["build", "twine"]
[tool.setuptools.packages.find]
where = ["custom_components"]