Skip to content

Commit

Permalink
build: Add a long description.
Browse files Browse the repository at this point in the history
  • Loading branch information
feanil committed Apr 8, 2024
1 parent 716d6d8 commit afbe0f4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion i18n/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from . import config

__version__ = '1.4.0'
__version__ = '1.5.0'


class Runner:
Expand Down
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python
import os
import re
import pathlib

from setuptools import setup

Expand Down Expand Up @@ -42,11 +43,17 @@ def get_version(*file_paths):

VERSION = get_version("i18n", "__init__.py")

here = pathlib.Path(__file__).parent.resolve()

# Get the long description from the README file
long_description = (here / "README.rst").read_text(encoding="utf-8")

setup(
name='edx-i18n-tools',
version=VERSION,
description='edX Internationalization Tools',
long_description=long_description,
long_description_content_type='text/x-rst',
author='edX',
author_email='[email protected]',
url='https://github.com/openedx/i18n-tools',
Expand Down

0 comments on commit afbe0f4

Please sign in to comment.