Skip to content

Commit

Permalink
Merge pull request #148 from openedx/feanil/add_long_description
Browse files Browse the repository at this point in the history
docs: Add a long_description.
  • Loading branch information
Feanil Patel authored Apr 1, 2024
2 parents abad3bd + 72c04ee commit 8ed3dc7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion edxsearch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" Container module for testing / demoing search """

__version__ = '3.9.0'
__version__ = '3.9.1'
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
""" Setup to allow pip installs of edx-search module """
import os
import re
from pathlib import Path

from setuptools import setup

Expand Down Expand Up @@ -47,11 +48,16 @@ def get_version(*file_paths):

VERSION = get_version('edxsearch', '__init__.py')

# read the contents of your README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name='edx-search',
version=VERSION,
description='Search and index routines for index access',
long_description=long_description,
long_description_content_type='text/markdown',
author='edX',
author_email='[email protected]',
url='https://github.com/openedx/edx-search',
Expand Down

0 comments on commit 8ed3dc7

Please sign in to comment.