-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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 #3225 from souravsingh/add-gensim
Add recipe for Gensim
- Loading branch information
Showing
1 changed file
with
78 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{% set name = "gensim" %} | ||
{% set version = "2.3.0" %} | ||
{% set sha256 = "7d0dccc7d2c576e270037949874800b7cfbc86ef081ff981483f612cd18e223f" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
fn: {{ name }}-{{ version }}.tar.gz | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
number: 0 | ||
skip: true # [win32 or osx or py34] | ||
features: | ||
- vc9 # [win and py27] | ||
- vc10 # [win and py34] | ||
- vc14 # [win and (py35 or py36)] | ||
script: python setup.py install --single-version-externally-managed --record record.txt | ||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
- numpy >=1.11.3 | ||
- scipy >=0.18.1 | ||
- six >=1.5.0 | ||
- smart_open >=1.2.1 | ||
run: | ||
- python | ||
- numpy >=1.11.3 | ||
- scipy >=0.18.1 | ||
- six >=1.5.0 | ||
- smart_open >=1.2.1 | ||
|
||
test: | ||
requires: | ||
- nose | ||
- testfixtures | ||
- morfessor | ||
- scikit-learn ==0.18.2 | ||
- pyemd | ||
imports: | ||
- gensim | ||
- gensim.corpora | ||
- gensim.models | ||
- gensim.models.wrappers | ||
- gensim.parsing | ||
- gensim.scripts | ||
- gensim.similarities | ||
- gensim.sklearn_integration | ||
- gensim.summarization | ||
- gensim.test | ||
- gensim.topic_coherence | ||
commands: | ||
- nosetests --exe -v gensim | ||
|
||
about: | ||
home: http://github.com/RaRe-Technologies/gensim | ||
license: LGPL-3.0 | ||
license_file: COPYING | ||
license_family: LGPL | ||
summary: 'Topic Modelling for Humans' | ||
description: | | ||
Gensim is a Python library for topic modelling, document indexing | ||
and similarity retrieval with large corpora. | ||
Target audience is the natural language processing (NLP) | ||
and information retrieval (IR) community. | ||
doc_url: http://radimrehurek.com/gensim/ | ||
dev_url: https://github.com/RaRe-Technologies/gensim | ||
|
||
extra: | ||
recipe-maintainers: | ||
- souravsingh | ||
- tmylk | ||
- menshikh-iv |