Update pyproject.toml

1.7.0.0
This commit is contained in:
Richard Mwewa
2023-08-25 14:54:31 +02:00
committed by GitHub
parent f117c99cc7
commit 8f259b7a40

View File

@@ -7,12 +7,12 @@ packages = ["rpst"]
[project]
name = "reddit-post-scraping-tool"
version = "1.6.2.0"
version = "1.7.0.0"
description = "Given a subreddit name and a keyword, RPST returns all top (by default) posts that contain the specified keyword."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["osint", "reddit-crawler", "reddit-scraping", "reddit"]
keywords = ["reddit-crawler", "reddit-scraping", "reddit", "reddit-api"]
authors = [{name = "Richard Mwewa", email = "rly0nheart@duck.com"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
@@ -26,6 +26,7 @@ classifiers = [
dependencies = [
"rich",
"glyphoji",
"requests",
]
@@ -35,4 +36,4 @@ documentation = "https://github.com/bellingcat/reddit-post-scraping-tool/wiki"
repository = "https://github.com/bellingcat/reddit-post-scraping-tool.git"
[project.scripts]
rpst = "rpst.__main:run"
rpst = "rpst.main:run"