-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
48 lines (36 loc) · 1.03 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" setuptools setup.py for python-cuda """
from ez_setup import use_setuptools
use_setuptools(version='0.6c9')
from setuptools import setup, find_packages
setup(
name = 'python-cuda',
version = '2.1-0.0.1',
packages = ['cuda',
'cuda.cu',
'cuda.cuda',
'cuda.cublas',
'cuda.cufft',
'cuda.sugar',
'cuda.sugar.memory',
'cuda.sugar.kernel',
'cuda.sugar.fft',
'cuda.sugar.blas',
'cuda.sugar.query',
'cuda.utils'],
package_dir = {'cuda':'cuda'},
package_data = {'cuda.sugar.fft': ['*.cu'] },
install_requires=[
"numpy>=1.3.0",
"scipy>=0.7.0",
],
# author='',
# author_email='',
# url='',
# description='Python bindings for CUDA 2.1 with numpy integration',
# long_description = """ """,
# download_url='',
# license='?',
# package_data = {}
)