-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (33 loc) · 1.34 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
install_requires = [
'numpy>=1.10',
]
if __name__ == '__main__':
setup(name='paradox',
version="0.2",
author='ictxiangxin',
author_email='[email protected]',
maintainer='ictxiangxin',
maintainer_email='[email protected]',
description='Tiny deep-learning framework',
platforms=['MS Windows', 'Mac X', 'Unix/Linux'],
keywords=['deep-learning', 'machine-learning', 'autograd', 'symbolic-computation'],
packages=['paradox',
'paradox.kernel',
'paradox.neural_network',
'paradox.neural_network.convolutional_neural_network',
'paradox.utils',
'paradox.data',
'paradox.data.data_handler',
'paradox.data.data_set'],
install_requires=install_requires,
classifiers=["Natural Language :: English",
"Programming Language :: Python",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3"],
zip_safe=False)