-
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.
Merge pull request #43 from MycroftAI/pypi-release
Add PyPI info
- Loading branch information
Showing
1 changed file
with
20 additions
and
4 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,16 +22,32 @@ def required(requirements_file): | |
|
||
extra_files = package_files('lingua_franca') | ||
|
||
with open("readme.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name='lingua_franca', | ||
version='0.1', | ||
version='0.1.0', | ||
packages=['test', 'lingua_franca', 'lingua_franca.lang'], | ||
url='https://github.com/MycroftAi/lingua_franca', | ||
license='Apache2.0', | ||
package_data={'': extra_files}, | ||
include_package_data=True, | ||
install_requires=required('requirements.txt'), | ||
author='jarbasAI', | ||
author_email='[email protected]', | ||
description='Mycroft\'s multilingual text parsing and formatting library' | ||
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", | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Topic :: Text Processing :: Linguistic', | ||
'License :: OSI Approved :: Apache Software License', | ||
|
||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
) |