forked from autonomio/autonomio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
105 lines (93 loc) · 3.11 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
#! /usr/bin/env python
#
# Copyright (C) 2015-2017 Botlab
import os
os.environ["MPLCONFIGDIR"] = "."
DESCRIPTION = "Autonomio: deep learning based "
LONG_DESCRIPTION = """\
Autonomio provides a very high-level abstraction layer on top of Keras,
using Tensorflow as a backend and spaCy for word vectorization.
- single-command neural network training
- training command accepts as little as 'x' and 'y' as inputs
- 'x' can be text, continues or categorial data
- 15 optional configurations from a single command
- seamlessly integrates word2vec with keras deep learning
- interactive plots specifically designed for deep learning
For most use cases succesfully running a state-of-the-art AI works
out of the box in less than 60 seconds to first trained model.
Autonomio is proven to deal with hard classification problems at close to
100% accuracy across a range of test s
"""
DISTNAME = 'autonomio'
MAINTAINER = 'Mikko Kotila'
MAINTAINER_EMAIL = '[email protected]'
URL = 'http://botlab.io'
LICENSE = 'MIT'
DOWNLOAD_URL = 'https://github.com/botlabio/autonomio/'
VERSION = '0.1.2.dev'
try:
from setuptools import setup
_has_setuptools = True
except ImportError:
from distutils.core import setup
def check_dependencies():
install_requires = []
try:
import numpy
except ImportError:
install_requires.append('numpy')
try:
import scipy
except ImportError:
install_requires.append('scipy')
try:
import matplotlib
except ImportError:
install_requires.append('matplotlib')
try:
import pandas
except ImportError:
install_requires.append('pandas')
try:
import tensorflow
except ImportError:
install_requires.append('tensorflow')
try:
import keras
except ImportError:
install_requires.append('keras')
try:
import spacy
except ImportError:
install_requires.append('spacy')
try:
import h5py
except ImportError:
install_requires.append('h5py')
return install_requires
if __name__ == "__main__":
install_requires = check_dependencies()
setup(name=DISTNAME,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license=LICENSE,
url=URL,
version=VERSION,
download_url=DOWNLOAD_URL,
install_requires=install_requires,
packages=['autonomio'],
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'],
)