From 8010c1f4a97ea9bf57821944e6374f2d9f9d33d0 Mon Sep 17 00:00:00 2001 From: takunomi-build-bot Date: Mon, 7 Jul 2025 00:47:51 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Repository=20layout=20updated=20?= =?UTF-8?q?to=20latest=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager) --- README.md | 18 +++++++++++++++++- setup.py | 12 +++++++++++- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8373a96..de86987 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,23 @@ This project requires [Python](https://www.python.org/) 3.8 or newer. -This project does not have any library requirements 😎 +All required libraries can be installed easily using: + +```bash +pip install -r requirements.txt +``` + +Full list of requirements: +- [beautifulsoup4](https://pypi.org/project/beautifulsoup4/) +- [cssselect](https://pypi.org/project/cssselect/) +- [fin-defs](https://gitfub.space/Jmaa/fin-defs) +- [lxml](https://pypi.org/project/lxml/) +- [requests](https://pypi.org/project/requests/) +- [frozendict](https://pypi.org/project/frozendict/) +- [requests-ratelimiter](https://pypi.org/project/requests-ratelimiter/) +- [requests-util](https://gitfub.space/Jmaa/requests_util) +- [requests_cache](https://pypi.org/project/requests_cache/) + ## Contributing diff --git a/setup.py b/setup.py index c910816..82823ef 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,17 @@ with open(PACKAGE_NAME + '/_version.py') as f: version = parse_version_file(f.read()) -REQUIREMENTS_MAIN = [] +REQUIREMENTS_MAIN = [ + 'beautifulsoup4', + 'cssselect', + 'fin-defs @ git+https://gitfub.space/Jmaa/fin-defs.git', + 'lxml', + 'requests', + 'frozendict', + 'requests-ratelimiter', + 'requests-util @ git+https://gitfub.space/Jmaa/requests_util.git', + 'requests_cache', +] REQUIREMENTS_TEST = []