spurelations/pyproject.toml
2025-01-01 13:33:44 +01:00

27 lines
823 B
TOML

[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spurelations"
version = "0.1.1"
description = "Download spurious correlations from tylervigen.com"
readme = "README.md"
authors = [{ name = "tcsenpai", email = "tcsenpai@discus.sh" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["spurious", "correlations", "data", "visualization"]
dependencies = ["beautifulsoup4", "requests", "tqdm", "colorama"]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/tcsenpai/spurelations"
Repository = "https://github.com/tcsenpai/spurelations.git"
[project.scripts]
spurelations = "spurelations.main:main"