mirror of
https://github.com/NohamR/gofilepy.git
synced 2026-01-09 07:48:17 +00:00
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.
31 lines
729 B
TOML
31 lines
729 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "gofilepy"
|
|
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" }]
|
|
license = { text = "MIT" }
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
requires-python = ">=3.7"
|
|
dependencies = [
|
|
"httpx", # The modern HTTP client
|
|
"python-dotenv>=0.21.1", # Progress bar
|
|
"tqdm",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pylint",
|
|
]
|
|
|
|
[project.scripts]
|
|
gofilepy = "gofilepy.cli:main"
|