24 lines
467 B
TOML
24 lines
467 B
TOML
[project]
|
|
name = "popcorn-dataset"
|
|
version = "0.1.0"
|
|
description = "A full CSV representation of the Voidlinux popcorn data"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"aiofiles>=24.1.0",
|
|
"aiohttp>=3.13.0",
|
|
"yarl>=1.22.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["code"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"dataframely>=1.13.0",
|
|
"pytest>=8.4.2",
|
|
]
|