-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cb8642
commit 43837ac
Showing
1 changed file
with
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ def required(requirements_file): | |
|
||
extra_files = package_files('lingua_franca') | ||
|
||
with open("README.md", "r") as fh: | ||
with open("readme.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
|
@@ -34,8 +34,8 @@ def required(requirements_file): | |
package_data={'': extra_files}, | ||
include_package_data=True, | ||
install_requires=required('requirements.txt'), | ||
author='jarbasAI', | ||
author_email='[email protected]', | ||
author='Mycroft AI', | ||
author_email='[email protected]', | ||
description='Mycroft\'s multilingual text parsing and formatting library', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
|