Spaces:
Build error
Build error
File size: 680 Bytes
c9a75fc 2293b42 121ffc2 ae4ba41 7ddd13d c9a75fc 121ffc2 c9a75fc | 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 | [tool.poetry]
name = "math_roots"
version = "0.1.0"
description = "Visualize mathematician ancestor trees from the Math Genealogy Project using Geneagrapher and Streamlit."
authors = ["Your Name <you@example.com>"]
readme = "README.md"
packages = [{ include = "src" }]
[tool.poetry.dependencies]
python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
streamlit = "^1.35.0"
streamlit-agraph = "^0.0.45"
pyvis = "^0.3.2"
websockets = "^12.0"
pytest-cov = "^6.1.1"
graphviz = "^0.20.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
black = "^24.4.2"
isort = "^5.13.2"
flake8 = "^7.0.0"
mypy = "^1.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|