forked from PetrochukM/PyTorch-NLP
-
Notifications
You must be signed in to change notification settings - Fork 0
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 PetrochukM#37 from PetrochukM/pypi
Updates for PyPi Release
- Loading branch information
Showing
3 changed files
with
10 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,9 @@ def find_version(*file_paths): | |
raise RuntimeError("Unable to find version string.") | ||
|
||
|
||
with open('README.md') as f: | ||
long_description = f.read() | ||
|
||
VERSION = find_version('torchnlp', '__init__.py') | ||
|
||
setup_info = dict( | ||
|
@@ -28,13 +31,14 @@ def find_version(*file_paths): | |
version=VERSION, | ||
author='Michael Petrochuk', | ||
author_email='[email protected]', | ||
url='https://github.com/Deepblue129/PytorchNLP', | ||
url='https://github.com/PetrochukM/PytorchNLP', | ||
description='Text utilities and datasets for PyTorch', | ||
long_description=read('README.md'), | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
license='BSD', | ||
install_requires=['numpy', 'pandas', 'tqdm', 'ujson', 'requests'], | ||
classifiers=[ | ||
'Development Status :: 2 - Pre-Alpha', | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Science/Research', | ||
|
@@ -48,7 +52,7 @@ def find_version(*file_paths): | |
'Topic :: Software Development :: Libraries', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
keywords='pytorch nlp text', | ||
keywords='pytorch nlp text torchtext torchnlp', | ||
python_requires='>=3.5', | ||
|
||
# Package info | ||
|
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 +1 @@ | ||
__version__ = '0.3.0' | ||
__version__ = '0.3.4' |