-
Notifications
You must be signed in to change notification settings - Fork 130
/
setup.py
61 lines (60 loc) · 2.05 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='nmt_keras',
version='0.6',
description='Neural Machine Translation with Keras (Theano and Tensorflow).',
author='Marc Bolaños - Alvaro Peris',
author_email='[email protected]',
url='https://github.com/lvapeab/nmt-keras',
download_url='https://github.com/lvapeab/nmt-keras/archive/master.zip',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
"License :: OSI Approved :: MIT License"
],
install_requires=[
'cloudpickle',
'future',
'keras @ https://github.com/MarcBS/keras/archive/master.zip',
'keras_applications',
'keras_preprocessing',
'h5py',
'matplotlib',
'multimodal-keras-wrapper',
'numpy',
'scikit-image',
'scikit-learn',
'six',
'tables',
'numpy',
'pandas',
'sacrebleu',
'sacremoses',
'scipy',
'tensorflow<2'
],
package_dir={'nmt_keras': '.',
'nmt_keras.utils': 'utils',
'nmt_keras.data_engine': 'data_engine',
'nmt_keras.nmt_keras': 'nmt_keras',
'nmt_keras.demo-web': 'demo-web',
},
packages=['nmt_keras',
'nmt_keras.utils',
'nmt_keras.data_engine',
'nmt_keras.nmt_keras',
'nmt_keras.demo-web'
],
package_data={
'nmt_keras': ['examples/*']
}
)