-
Notifications
You must be signed in to change notification settings - Fork 679
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a long description to the package description
- Loading branch information
1 parent
a5d403e
commit 395b5b9
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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, | ||
|
@@ -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", | ||
|