From a8f89f25495a8d76e46fc20305f2ac65db0c6f9d Mon Sep 17 00:00:00 2001 From: takunomi-build-bot Date: Mon, 8 Jul 2024 20:22:14 +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/python-omni --- setup.py | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/setup.py b/setup.py index 385cba5..7be8bf3 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python -# # WARNING # # THIS IS AN AUTOGENERATED FILE. @@ -12,9 +10,18 @@ from setuptools import setup PACKAGE_NAME = 'requests_util' -with open('README.md') as f: - readme = f.read() +PACKAGE_DESCRIPTION = """ +# Requests utilities. +Utility for standarized usage of HTTP requests extension libraries in a modular fashion across different libraries. + +Currently supports [`requests_cache`](https://requests-cache.readthedocs.io) and [`requests_ratelimiter`](https://github.com/JWCook/requests-ratelimiter). + +The intention is that a libraries can automatically setup ratelimiting for +their specific use cases, as the library most likely has a better +understanding of the ratelimiting and caching behaviour of their associated websites than the user has.""" + +PACKAGE_DESCRIPTION_SHORT='Utility for standarized usage of HTTP requests extension libraries in a modular fashion across different libraries.' def parse_version_file(text: str) -> str: match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text) @@ -37,16 +44,6 @@ def read_requirements(path: str) -> list[str]: return parse_requirements(f.read()) -def determine_short_description(readme: str) -> str: - readme = re.sub(r'#+[^\n]*\n+', '', readme) - m = re.search(r'^\s*(\w+[\w\s,`+-]+\.)', readme) - try: - return m.group(1) - except AttributeError as err: - msg = f'Could not determine short description: {readme}' - raise Exception(msg) from err - - REQUIREMENTS_MAIN = """ requests requests_ratelimiter @@ -61,8 +58,8 @@ pytest setup( name=PACKAGE_NAME, version=version, - description=determine_short_description(readme), - long_description=readme, + description=PACKAGE_DESCRIPTION_SHORT, + long_description=PACKAGE_DESCRIPTION, long_description_content_type='text/markdown', author='Jmaa', author_email='jonjmaa@gmail.com',