forked from kudkudak/word-embeddings-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
124 lines (93 loc) · 3.3 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#!/usr/bin/env python
"""
web
----
Word Embeddings Benchmarks
"""
from __future__ import print_function
import os.path as op
import io
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
# long description
def read(*filenames, **kwargs):
encoding = kwargs.get('encoding', 'utf-8')
sep = kwargs.get('sep', '\n')
buf = []
for filename in filenames:
with io.open(filename, encoding=encoding) as f:
buf.append(f.read())
return sep.join(buf)
# Get version without importing, which avoids dependency issues
MODULE_NAME = find_packages(exclude=['tests'])[0]
VERSION_PYFILE = op.join(MODULE_NAME, 'version.py')
# set __version__ variable
exec (compile(read(VERSION_PYFILE), VERSION_PYFILE, 'exec'))
# INSTALL_REQUIRES = list(parse_requirements('requirements.txt'))
# req_files = ['requirements.txt', 'pip_requirements.txt']
LICENSE = 'New BSD'
setup_dict = dict(
name=MODULE_NAME,
version=__version__,
description='Word Embedding Benchmarks',
license='New BSD',
author='Stanislaw Jastrzebski',
author_email='[email protected]',
maintainer='Stanislaw Jastrzebski',
maintainer_email='[email protected]',
packages=find_packages(),
install_requires=['numpy',
'scipy',
'scikit-learn'],
extra_files=['CHANGES.rst', 'COPYING', 'README.rst'],
scripts=[],
long_description=read('README.rst', 'CHANGES.rst'),
platforms='Linux/MacOSX',
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Programming Language :: Python',
'Development Status :: 1 - Alpha',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Machine Learning Research',
'License :: OSI Approved ::' + LICENSE,
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Machine Learning',
'Topic :: Scientific/Engineering :: Information Analysis',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
extras_require={
'testing': ['pytest', 'pytest-cov'],
}
)
# Python3 support keywords
if sys.version_info >= (3,):
setup_dict['use_2to3'] = False
setup_dict['convert_2to3_doctests'] = ['']
setup_dict['use_2to3_fixers'] = ['']
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
setup_dict.update(dict(tests_require=['pytest'],
cmdclass={'test': PyTest}))
if __name__ == '__main__':
setup(**setup_dict)