mirror of
https://github.com/bellingcat/reddit-post-scraping-tool.git
synced 2026-06-07 19:18:29 +03:00
41 lines
1.2 KiB
TOML
41 lines
1.2 KiB
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["rpst"]
|
|
|
|
[project]
|
|
name = "reddit-post-scraping-tool"
|
|
version = "2.0.1.0"
|
|
description = "Retrieve Reddit posts that contain the specified keyword from a specified subreddit."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = { file = "LICENSE" }
|
|
keywords = ["reddit-crawler", "reddit-scraping", "reddit", "reddit-api"]
|
|
authors = [{ name = "Richard Mwewa", email = "rly0nheart@duck.com" }]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Visual Basic",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Natural Language :: English"
|
|
]
|
|
|
|
dependencies = [
|
|
"rich",
|
|
"aiohttp",
|
|
"rich-argparse"
|
|
]
|
|
|
|
[project.urls]
|
|
homepage = "https://github.com/bellingcat"
|
|
documentation = "https://github.com/bellingcat/reddit-post-scraping-tool/wiki"
|
|
repository = "https://github.com/bellingcat/reddit-post-scraping-tool.git"
|
|
|
|
[project.scripts]
|
|
rpst = "rpst.scraper:run"
|
|
reddit_post_scraping_tool = "rpst.scraper:run"
|