Line | |
---|
1 | try |
---|
2 | from setuptools import setup |
---|
3 | except ImportError: |
---|
4 | from distutils.core import setup |
---|
5 | |
---|
6 | cofig = { |
---|
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 | |
---|
19 | setup(**config) |
---|
Note: See
TracBrowser
for help on using the repository browser.