Update docs, add dev dependencies, and test script

Revise README with improved installation and usage instructions, add development section, and simplify Python usage example. Bump version to 1.1.2, add optional 'dev' dependencies (pylint) in pyproject.toml, and introduce a minimal test.py script for upload testing.
This commit is contained in:
√(noham)²
2025-12-12 18:26:16 +01:00
parent 2640b65794
commit cf56e3ca3e
4 changed files with 733 additions and 66 deletions

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "gofilepy"
version = "1.1.1"
version = "1.1.2"
description = "A Python CLI and Library for gofile.io"
readme = "README.md"
authors = [{ name = "Garnajee", email = "62147746+garnajee@users.noreply.github.com" }]
@@ -21,5 +21,10 @@ dependencies = [
"tqdm",
]
[project.optional-dependencies]
dev = [
"pylint",
]
[project.scripts]
gofilepy = "gofilepy.cli:main"