-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
91 lines (71 loc) · 1.99 KB
/
setup.py
File metadata and controls
91 lines (71 loc) · 1.99 KB
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
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='deep',
version='0.0.1',
packages=find_packages(exclude=['tests', 'math']),
package_data = {
},
install_requires=[
'matplotlib',
'numpy',
'scipy',
'keras',
'tensorflow',
'opencv-contrib-python',
'scikit-learn',
'pillow',
'pydot',
'tqdm'
],
tests_require=[
'tox',
],
setup_requires = [
'setuptools'
],
include_package_data = True,
entry_points={
'console_scripts': [
'mnist = scripts.mnist:main',
'mnist2 = scripts.mnist2:main',
'autoencoder = scripts.autoencoder:main',
],
'gui_scripts': [
],
},
license = 'Apache',
zip_safe=True,
author='Brendan Drew',
author_email='',
description = '',
long_description=readme(),
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Console :: Curses',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3 :: Only',
'Topic:: Multimedia:: Video:: Capture',
'Topic :: Multimedia :: Video :: Display',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Hardware'
],
keywords = '',
project_urls = {
'Issues': '',
'Source': '',
},
url = ''
)