Blame view

setup.py 476 Bytes
f2d3bd141   Parcollet Titouan   Initial commit wi...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  #!/usr/bin/env python
  from setuptools import setup
  
  with open('README.md') as f:
      DESCRIPTION = f.read()
  
  
  setup(
      name='Quaternion Convolutional Neural Networks for automatic speech recognition',
      version='1',
      license='MIT',
      long_description=DESCRIPTION,
      packages=['complexnn'],
      scripts=['scripts/run.py', 'scripts/training.py'],
      install_requires=[
          "numpy", "scipy", "sklearn", "Theano", "keras", "kerosene", "tensorflow-gpu"]
          
  )