-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 848 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
[project]
name = "shinylive_auth"
version = "2024.8.4"
authors = [
{name="darrida", email="[email protected]"}
]
description = "View and server modules to facility shinylive authentication using a class protocal and local storage."
readme = "README.md"
dependencies = [
'shiny >= 1.0.0',
'pydantic < 2.0',
]
[project.optional-dependencies]
tests = [
'fastapi',
'loguru',
'pyfetch_mimic == 2024.04.20',
'httpx',
'pytest',
'shinylive',
'shinyswatch',
'playwright',
'pytest-playwright',
'pytest-xdist',
'pytest-rerunfailures',
'pytest-pyodide',
'pytest-httpserver',
]
[project.urls]
Homepage = "https://github.com/darrida/py-shinylive-authentication"
Issues = "https://github.com/darrida/py-shinylive-authentication/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"