-
Notifications
You must be signed in to change notification settings - Fork 11
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 #24 from prasannababuAddagiri/master
wordvecspace interact feature
- Loading branch information
Showing
3 changed files
with
56 additions
and
37 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 |
---|---|---|
@@ -1,28 +1,6 @@ | ||
from setuptools import setup, find_packages | ||
import os | ||
|
||
HERE = os.path.abspath(os.path.dirname(__file__)) | ||
def get_long_description(): | ||
dirs = [ HERE ] | ||
if os.getenv("TRAVIS"): | ||
dirs.append(os.getenv("TRAVIS_BUILD_DIR")) | ||
|
||
long_description = "" | ||
|
||
for d in dirs: | ||
rst_readme = os.path.join(d, "README.rst") | ||
if not os.path.exists(rst_readme): | ||
continue | ||
|
||
with open(rst_readme) as fp: | ||
long_description = fp.read() | ||
return long_description | ||
|
||
return long_description | ||
|
||
long_description = get_long_description() | ||
|
||
version = '0.4.1' | ||
version = '0.4.2' | ||
setup( | ||
name="wordvecspace", | ||
version=version, | ||
|
@@ -31,7 +9,6 @@ def get_long_description(): | |
" created using Google's Word2vec tool. It also supports" | ||
" converting word vector space data (vectors and vocabulary)" | ||
" from Google Word2Vec format to WordVecSpace format.", | ||
long_description=long_description, | ||
keywords='wordvecspace', | ||
author='Deep Compute, LLC', | ||
author_email="[email protected]", | ||
|
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