source: trunk/anuga_work/anuga_cuda/setup.py

Last change on this file was 9017, checked in by steve, 11 years ago

Adding in Zhe (John) Weng's anuga_cuda code as obtained from googlecode https://code.google.com/p/anuga-cuda

File size: 605 bytes
Line 
1try
2    from setuptools import setup
3except ImportError:
4    from distutils.core import setup
5
6cofig = {
7        'description' : 'anuga-cuda project',
8        'author' : 'Zhe Weng',
9        'url' : 'http://code.google.com/p/anuga-cuda/',
10        'download_url' : 'svn checkout http://anuga-cuda.googlecode.com/svn/trunk/ anuga-cuda-read-only',
11        'author_email' : 'wengcsyz@gmail.com',
12        'version' : '0.1',
13        'install_requires' : ['nose'],
14        'packages' : ['Boost', 'ANUGA', 'Numpy', 'PyCUDA', 'CUDA'],
15        'scripts': [],
16        'name' : 'anuga-cuda'
17        }
18
19setup(**config)
Note: See TracBrowser for help on using the repository browser.