-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 836 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 836 Bytes
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
from setuptools import setup
from pycl import __version__
setup(
name='pycl',
version=__version__,
author="Ken Watford",
author_email="kwatford@gmail.com",
url="https://github.com/ucb-sejits/pycl",
download_url="https://github.com/ucb-sejits/pycl",
py_modules=['pycl'],
license='MIT',
description="OpenCL wrapper using ctypes",
# long_description=open('README.md').read(),
tests_require=['nose'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': ['pycl = pycl:main'],
}
)