mirror of
https://github.com/andreinechaev/nvcc4jupyter.git
synced 2026-06-13 18:50:47 +05:30
14 lines
383 B
Python
14 lines
383 B
Python
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(),
|
|
)
|