Create setup.py
This commit is contained in:
parent
d7e53608b7
commit
dc3c037e48
21
setup.py
Normal file
21
setup.py
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
setup(name='opencl_fdfd',
|
||||||
|
version='0.1',
|
||||||
|
description='Opencl FDFD solver',
|
||||||
|
author='Jan Petykiewicz',
|
||||||
|
author_email='anewusername@gmail.com',
|
||||||
|
url='https://mpxd.net/gogs/jan/opencl_fdfd',
|
||||||
|
packages=find_packages(),
|
||||||
|
install_requires=[
|
||||||
|
'numpy',
|
||||||
|
'pyopencl',
|
||||||
|
'jinja2',
|
||||||
|
'fdfd_tools',
|
||||||
|
],
|
||||||
|
extras_require={
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user