Initial commit

* basic CLI that will post text and images
* reblogging is available
* tags are available
This commit is contained in:
Intercal
2025-08-13 14:08:46 -07:00
commit fec97da1c0
10 changed files with 832 additions and 0 deletions

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[project]
name = "tumblrcli"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pytumblr2>=0.2.4",
]
[dependency-groups]
dev = [
"black>=25.1.0",
"isort>=6.0.1",
"jedi>=0.19.2",
"mypy>=1.17.1",
"ruff>=0.12.8",
]