Skip to content
This repository was archived by the owner on Jul 4, 2023. It is now read-only.

Commit 1412843

Browse files
committed
Update Version, Release.sh, and Long Description
1 parent a85955d commit 1412843

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

build_tools/pypi/release.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# NOTE: First, update the version number in `torchnlp.__init__.__version__``
22
# REFERENCE: https://packaging.python.org/tutorials/distributing-packages/
33

4+
# Delete the last wheel
5+
rm -r dist/
6+
47
# Create a source distribution
58
python3.6 setup.py sdist
69

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,7 @@ def find_version(*file_paths):
3030
author_email='[email protected]',
3131
url='https://github.com/Deepblue129/PytorchNLP',
3232
description='Text utilities and datasets for PyTorch',
33-
long_description="PyTorch-NLP is a library for Natural Language Processing (NLP) in Python. " +
34-
"It's built with the very latest research in mind, and was designed from day one to support " +
35-
"rapid prototyping. PyTorch-NLP comes with pre-trained embeddings, samplers, dataset loaders," +
36-
" metrics, neural network modules and text encoders. It's open-source software, released " +
37-
"under the BSD3 license.",
33+
long_description=read('README.md'),
3834
license='BSD',
3935
install_requires=['numpy', 'pandas', 'tqdm', 'ujson', 'requests'],
4036
classifiers=[

torchnlp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.0'
1+
__version__ = '0.2.1'

0 commit comments

Comments
 (0)