33 lines
742 B
TOML
33 lines
742 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "patreon-dl"
|
|
version = "0.0.1"
|
|
authors = [
|
|
{ name="Neill Cox", email="neill@ingenious.com.au" },
|
|
]
|
|
description = "A tool for downloading content from patreon"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"requests",
|
|
"tabulate",
|
|
"click",
|
|
"requests",
|
|
"bs4",
|
|
"selenium",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://gitlab.com/neillc/patreon-dl"
|
|
"Bug Tracker" = "https://gitlab.com/neillc/patreon-dl/issues"
|
|
|
|
[project.scripts]
|
|
patreon-dl = "patreon_dl.main:main"
|