forked from masenf/reflex-local-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 728 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 728 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
34
35
36
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "reflex-local-auth"
version = "0.2.2"
description = "Local DB user authentication for Reflex apps"
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.8"
authors = [{ name = "Masen Furer", email = "m_github@0x26.net" }]
keywords = [
"reflex",
"reflex-custom-components"]
dependencies = [
"reflex>=0.5.9",
"bcrypt",
]
classifiers = [
"Development Status :: 4 - Beta",
]
[project.urls]
Homepage = "https://github.com/masenf/reflex-local-auth"
[project.optional-dependencies]
dev = ["build", "twine"]
[tool.setuptools.packages.find]
where = ["custom_components"]