Spaces:
Running
Running
File size: 685 Bytes
7a18dc2 5d95f5f 7a18dc2 ac8c5cd 7a18dc2 ac8c5cd 3e30a68 7a18dc2 ac8c5cd 7a18dc2 c15b8d0 ac8c5cd 7a18dc2 3e30a68 |
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 46 |
[build-system]
requires = ["setuptools"]
[project]
requires-python = ">=3.9"
version = "1"
name = "YFDashboard"
dependencies = [
"streamlit",
"beautifulsoup4",
"html5lib",
"lxml",
"numpy",
"pandas",
"pydantic",
"streamlit-oauth",
]
[project.optional-dependencies]
dev = [
"black",
"ruff",
"lxml-stubs",
"mypy",
"pytest",
"pandas-stubs",
"types-beautifulsoup4",
"types-requests",
]
[tool.black]
line-length = 120
target-version = ["py311"]
[tool.ruff]
line-length = 120
src = ["src"]
[tool.mypy]
python_version = "3.11"
[[tool.mypy.overrides]]
module = [
'streamlit_oauth'
]
ignore_missing_imports = true |