math_roots / pyproject.toml
thearn's picture
layout
7ddd13d
raw
history blame contribute delete
680 Bytes
[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"