Skip to content

Commit

Permalink
Add a long description to the package description
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-duponchelle committed Jun 3, 2023
1 parent a5d403e commit 395b5b9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-

try:
from pathlib import Path
from setuptools import setup, Command
except ImportError:
from distutils.core import setup, Command
Expand Down Expand Up @@ -30,6 +31,9 @@ def run(self):

version = "0.41"

this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name="mysql-replication",
version=version,
Expand All @@ -38,6 +42,8 @@ def run(self):
author_email="[email protected]",
description=("Pure Python Implementation of MySQL replication protocol "
"build on top of PyMYSQL."),
long_description=long_description,
long_description_content_type='text/markdown',
license="Apache 2",
packages=["pymysqlreplication",
"pymysqlreplication.constants",
Expand Down

0 comments on commit 395b5b9

Please sign in to comment.