From d86ecb020bf0dae64a16660bedb85479db994b07 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Wed, 1 Mar 2023 23:00:04 +0200 Subject: [PATCH] Create pyproject.toml --- pyproject.toml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..4652462 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,35 @@ +[build-system] +requires = ["setuptools", "setuptools-scm"] +build-backend = "setuptools.build_meta" + +[project] +name = "reddit-post-scraping-tool" +version = "1.3.0.1" +description = "Given a subreddit name and a keyword, this program returns all top (by default) posts that contain the specified word." +readme = "README.md" +requires-python = ">=3.8" +license = {file = "LICENSE"} +keywords = ["osint", "reddit-crawler", "reddit-scraping", "reddit"] +authors = [{name = "Richard Mwewa", email = "rly0nheart@duck.com"}] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Programming Language :: Python :: 3", + "Programming Language :: Visual Basic", + "Intended Audience :: Information Technology", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Natural Language :: English" +] + +dependencies = [ + "rich", + "requests", +] + +[project.urls] +homepage = "https://github.com/bellingcat/reddit-post-scraping-tool" +documentation = "https://github.com/bellingcat/reddit-post-scraping-tool/wiki" +repository = "https://github.com/bellingcat/reddit-post-scraping-tool.git" + +[project.scripts] +reddit_post_scraping_tool = "reddit_post_scraping_tool.main:main"