-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathsetup.py
19 lines (18 loc) · 820 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
from setuptools import find_packages
setup(name='word2veckeras',
version='0.0.5.2',
description='word2vec based on Kearas and gensim',
author='Hirotaka Niitsuma',
author_email='[email protected]',
url='https://github.com/niitsuma/word2vec-keras-in-gensim',
download_url='https://github.com/niitsuma/word2vec-keras-in-gensim/archive/master.zip',
license='GNU Affero General Public License, version 3 - http://www.gnu.org/licenses/agpl-3.0.html',
install_requires=['gensim', 'theano', 'pyyaml', 'six', 'keras<=0.3.1'],
#install_requires=['gensim', 'theano', 'pyyaml', 'six', 'keras', 'sklearn'],
# extras_require={
# 'h5py': ['h5py'],
# },
packages=find_packages(),
test_suite = 'test'
)