From fc84d28fabf6dc9fdd68ac5aca3785c78fddc407 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 15 Dec 2023 14:59:36 -0600 Subject: [PATCH] MOTOR-1225 Add badges to README (#245) * MOTOR-1225 Add badges to README * restore image * clean up about section --- README.md | 21 +++++++++------------ pyproject.toml | 5 ++++- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 72a37480..f3014c98 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,18 @@ # Motor -![image](https://raw.github.com/mongodb/motor/master/doc/_static/motor.png) - -- Info: Motor is a full-featured, non-blocking [MongoDB](http://mongodb.org/) -driver for Python [Tornado](http://tornadoweb.org/) and -[asyncio](https://docs.python.org/3/library/asyncio.html) applications. +[![PyPI Version](https://img.shields.io/pypi/v/motor)](https://pypi.org/project/motor) +[![Python Versions](https://img.shields.io/pypi/pyversions/motor)](https://pypi.org/project/motor) +[![Monthly Downloads](https://static.pepy.tech/badge/motor/month)](https://pepy.tech/project/motor) +[![Documentation Status](https://readthedocs.org/projects/motor/badge/?version=stable)](http://motor.readthedocs.io/en/stable/?badge=stable) -- Documentation: Available at -[motor.readthedocs.io](https://motor.readthedocs.io/en/stable/) - -- Author: A. Jesse Jiryu Davis +![image](https://raw.github.com/mongodb/motor/master/doc/_static/motor.png) ## About -Motor presents a coroutine-based API for non-blocking access to MongoDB. -The source is [on GitHub](https://github.com/mongodb/motor) and the docs -are on [ReadTheDocs](https://motor.readthedocs.io/en/stable/). +Motor is a full-featured, non-blocking [MongoDB](http://mongodb.org/) +driver for Python [asyncio](https://docs.python.org/3/library/asyncio.html) and +[Tornado](http://tornadoweb.org/) applications. Motor presents a coroutine-based API +for non-blocking access to MongoDB. > "We use Motor in high throughput environments, processing tens of > thousands of requests per second. It allows us to take full advantage diff --git a/pyproject.toml b/pyproject.toml index dad6a0db..c34a6126 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,7 +73,10 @@ zstd = [ ] [project.urls] -Homepage = "https://github.com/mongodb/motor/" +Homepage = "https://www.mongodb.org" +Documentation = "https://motor.readthedocs.io" +Source = "https://github.com/mongodb/motor" +Tracker = "https://jira.mongodb.org/projects/MOTOR/issues" [tool.setuptools.dynamic] version = {attr = "motor._version.version"}