-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
42 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
[project]
name = "streamlit-cognito-auth"
version = "1.3.1"
description = "A Streamlit component for authenticating users with AWS Cognito"
authors = [
{ name = "Sarawin Khemmachotikun", email = "[email protected]" },
]
dependencies = [
"boto3 >= 1.26.52",
"pycognito >= 2022.12.0",
"pydantic >= 2.0.0",
"requests >= 2.31.0",
"streamlit >= 1.27.0",
"extra_streamlit_components >= 0.1.71",
]
readme = "README.md"
requires-python = ">= 3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
hello = "streamlit_cognito_auth:hello"
[project.urls]
Homepage = "https://github.com/pop-srw/streamlit-cognito-auth"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/streamlit_cognito_auth"]