-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
51 lines (47 loc) · 1.97 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
#!/usr/bin/env python3
"""nonce2vec setup.py.
This file details modalities for packaging the nonce2vec application.
"""
from setuptools import setup
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='nonce2vec',
description='A python module to generate word embeddings from tiny data',
author=' Alexandre Kabbach and Aurélie Herbelot',
author_email='akb@3azouz.net',
long_description=long_description,
long_description_content_type='text/markdown',
version='2.0.2',
url='https://github.com/minimalparts/nonce2vec',
download_url='https://github.com/minimalparts/nonce2vec/#files',
license='MIT',
keywords=['word2vec', 'word-embeddings', 'incremental-learning'],
platforms=['any'],
packages=['nonce2vec', 'nonce2vec.utils', 'nonce2vec.models',
'nonce2vec.exceptions', 'nonce2vec.logging',
'nonce2vec.resources'],
package_data={'nonce2vec': ['logging/*.yml', 'resources/*']},
include_package_data=True,
entry_points={
'console_scripts': [
'n2v = nonce2vec.main:main'
],
},
install_requires=['pyyaml>=4.2b1', 'gensim==3.4.0', 'numpy==1.15.4',
'scipy==1.2.0'],
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'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.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Text Processing :: Linguistic'],
zip_safe=False,
)