Initial commit

This commit is contained in:
Andrei Nechaev
2018-05-04 10:26:11 -04:00
commit 208e67cf07
4 changed files with 78 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
from distutils.core import setup
setup(
name='NVCCPlugin',
version='0.0.1',
author='Andrei Nechaev',
author_email='lyfaradey@yahoo.com',
py_modules=['nvcc_plugin'],
url='htpps://github.com/andreinechaev/nvcc4jupyter',
license='LICENSE',
description='Jupyter notebook plugin to run CUDA C/C++ code',
# long_description=open('README.md').read(),
)