forked from hannes-brt/cudnn-python-wrappers
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
23 lines (22 loc) · 912 Bytes
/
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
from distutils.core import setup
setup(
name = 'cudnn-python-wrappers',
py_modules = ['libcudnn'],
version = '2.1b1',
license = 'MIT',
description = 'Python wrappers for the NVIDIA cudnn 7.0 libraries.',
long_description = open('README.rst', 'r').read(),
author = 'Hannes Bretschneider',
author_email = '[email protected]',
url = 'https://github.com/hannes-brt/cudnn-python-wrappers',
keywords = ['cuda', 'nvidia', 'cudnn', 'convolutional neural networks',
'machine learning', 'deep learning'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Image Recognition'
],
)