-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 735 Bytes
/
setup.py
File metadata and controls
16 lines (15 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import setuptools
# from packagename.version import Version
setuptools.setup(name='slmpy',
version='0.2.0',
description='Display images on a spatial light modulators.',
long_description=open('README.md').read().strip(),
author="Sebastien M. Popoff",
author_email='sebastien.popoff@espci.psl.eu',
url='https://github.com/wavefrontshaping/slmPy',
py_modules=['slmpy.slmpy'],
install_requires=['numpy', 'wxPython'],
license='MIT License',
zip_safe=False,
keywords='numpy, python3, slm, wavefront shaping, display',
classifiers=[''])