forked from MarcBS/multimodal_keras_wrapper
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
53 lines (52 loc) · 2.01 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
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
setup(name='multimodal-keras-wrapper',
version='3.1.7',
description='Wrapper for Keras with support to easy multimodal data and models loading and handling.',
author='Marc Bolaños - Alvaro Peris',
author_email='[email protected]',
url='https://github.com/MarcBS/multimodal_keras_wrapper',
download_url='https://github.com/MarcBS/multimodal_keras_wrapper/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=['keras',
'numpy',
'six',
'toolz',
'cloudpickle',
'matplotlib',
'sacremoses',
'sacrebleu',
'scipy',
'subword-nmt',
'future',
'cython',
'keras_applications',
'keras_preprocessing',
'sklearn',
'tables'
],
extras_require={
'cython ': ['cython'],
'tests': ['pytest',
'flake8',
'pytest-xdist',
'flaky',
'pytest-cov',
'requests',
'markdown'],
},
packages=find_packages())