forked from chainer/chainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (50 loc) · 1.54 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='chainer',
version='1.4.0',
description='A flexible framework of neural networks',
author='Seiya Tokui',
author_email='[email protected]',
url='http://chainer.org/',
packages=['chainer',
'chainer.functions',
'chainer.functions.activation',
'chainer.functions.array',
'chainer.functions.caffe',
'chainer.functions.connection',
'chainer.functions.evaluation',
'chainer.functions.loss',
'chainer.functions.math',
'chainer.functions.noise',
'chainer.functions.normalization',
'chainer.functions.pooling',
'chainer.optimizers',
'chainer.testing',
'chainer.utils',
'cupy',
'cupy.binary',
'cupy.creation',
'cupy.cuda',
'cupy.indexing',
'cupy.io',
'cupy.linalg',
'cupy.logic',
'cupy.manipulation',
'cupy.math',
'cupy.padding',
'cupy.random',
'cupy.sorting',
'cupy.statistics',
'cupy.testing'],
package_data={
'cupy': ['carray.cuh'],
},
install_requires=['filelock',
'nose',
'numpy>=1.9.0',
'protobuf',
'six>=1.9.0'],
tests_require=['mock',
'nose'],
)