mirror of
https://github.com/tcsenpai/spurelations.git
synced 2025-06-02 17:30:16 +00:00
27 lines
823 B
TOML
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"
|