First working version
This commit is contained in:
parent
f863879351
commit
adca188afa
8 changed files with 960 additions and 3 deletions
33
pyproject.toml
Normal file
33
pyproject.toml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
[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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue