-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #145 from openedx/feanil/fix_readme
feanil/fix readme
- Loading branch information
Showing
4 changed files
with
11 additions
and
3 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
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
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
from . import config | ||
|
||
__version__ = '1.4.0' | ||
__version__ = '1.5.0' | ||
|
||
|
||
class Runner: | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#!/usr/bin/env python | ||
import os | ||
import re | ||
import pathlib | ||
|
||
from setuptools import setup | ||
|
||
|
@@ -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', | ||
|