forked from ludwig-ai/ludwig
-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
61 lines (46 loc) · 1.61 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
'''Ludwig: a deep learning experimentation toolbox
'''
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
# Get the long description from the README.md file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ludwig',
version='0.1.0',
description='A deep learning experimentation toolbox',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://ludwig.ai',
author='Piero Molino',
author_email='[email protected]',
license='Apache 2.0',
keywords='ludwig deep learning deep_learning machine machine_learning natural language processing computer vision',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
python_requires='>=3',
include_package_data=True,
package_data={'ludwig': ['etc/*', 'examples/*.py']},
install_requires=['Cython>=0.25',
'h5py>=2.6',
'matplotlib>=3.0',
'numpy>=1.15',
'pandas>=0.19',
'scipy>=0.18',
'scikit-learn',
'scikit-image==0.14.2',
'seaborn>=0.7',
'spacy>=2.0',
'tqdm',
'tabulate>=0.7',
'tensorflow>=1.12',
'PyYAML>=3.12'
],
entry_points={
'console_scripts': [
'ludwig=ludwig.cli:main'
]
}
)