Skip to content

Commit

Permalink
releasing 0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenhky committed Sep 8, 2017
1 parent 027d582 commit 933460e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ to fix any errors.

# News

* 09/08/2017: `shorttext` 0.5.2 released.
* 09/08/2017: `shorttext` 0.5.4 released.
* 09/02/2017: end of GSoC project. ([Report](https://rare-technologies.com/chinmayas-gsoc-2017-summary-integration-with-sklearn-keras-and-implementing-fasttext/))
* 08/22/2017: `shorttext` 0.5.1 released.
* 07/28/2017: `shorttext` 0.4.1 released.
Expand Down
2 changes: 1 addition & 1 deletion apidocs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
version = '0.5'
# The full version, including alpha/beta/rc tags.
release = '0.5.2'
release = '0.5.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# The short X.Y version.
version = u'0.5'
# The full version, including alpha/beta/rc tags.
release = u'0.5.2'
release = u'0.5.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/news.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
News
====

* 09/08/2017: `shorttext` 0.5.2 released.
* 09/08/2017: `shorttext` 0.5.4 released.
* 09/02/2017: end of GSoC project.
* 08/22/2017: `shorttext` 0.5.1 released.
* 07/28/2017: `shorttext` 0.4.1 released.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def readme():
return f.read()

setup(name='shorttext',
version="0.5.2",
version="0.5.4",
description="Short Text Categorization",
long_description="Supervised learning algorithms for short text categorization using embedded word vectors such as Word2Vec, or immediate feature vectors using topic models",
classifiers=[
Expand Down Expand Up @@ -38,7 +38,7 @@ def readme():
'shorttext.metrics.wasserstein',
'shorttext.metrics.embedfuzzy'],
package_dir={'shorttext': 'shorttext'},
package_data={'shorttext': ['data/*.csv', 'utils/*.pkl']},
package_data={'shorttext': ['data/*.csv', 'utils/*.pkl', 'metrics/dynprog/*.c', 'metric/dynprog/*.h']},
setup_requires=['numpy'],
install_requires=[
'numpy>=1.11.3', 'scipy>=0.18.1', 'scikit-learn', 'keras>=2.0.0', 'gensim>=2.2.0', 'pandas', 'spacy>=1.7.0', 'stemming', 'pulp',
Expand Down
3 changes: 2 additions & 1 deletion shorttext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@
from . import classifiers
from . import generators
from . import stack
from .smartload import smartload_compact_model
from .smartload import smartload_compact_model
from . import metrics

0 comments on commit 933460e

Please sign in to comment.