-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
55 lines (51 loc) · 2.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python3
"""word2vec setup.py.
This file details modalities for packaging the word2vec application.
"""
from setuptools import setup
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='tf-word2vec',
description='Word2Vec implentation with Tensorflow Estimators and Datasets',
author=' Alexandre Kabbach',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
version='1.0.7',
url='https://github.com/akb89/word2vec',
download_url='https://github.com/akb89/word2vec/archive/1.0.3.tar.gz',
license='MIT',
keywords=['word2vec', 'word embeddings', 'tensorflow', 'estimators',
'datasets'],
platforms=['any'],
packages=['word2vec', 'word2vec.utils', 'word2vec.models',
'word2vec.exceptions', 'word2vec.logging',
'word2vec.estimators', 'word2vec.evaluation'],
package_data={'word2vec': ['logging/*.yml', 'resources/*']},
include_package_data=True,
entry_points={
'console_scripts': [
'w2v = word2vec.main:main'
],
},
test_suite='tests',
install_requires=['pyyaml>=5.1', 'tensorflow==2.5.3', 'scipy==1.5.1',
'grpcio>=1.24.3', 'setuptools>=41.0.0', 'numpy==1.21.0'],
dependency_links=[
'https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.3.0-cp36-cp36m-manylinux2010_x86_64.whl',
'https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.3.0-cp37-cp37m-manylinux2010_x86_64.whl'],
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic'],
zip_safe=False,
)