-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
15 lines (14 loc) · 983 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import setuptools
setuptools.setup(name='codedapertures',
version='0.12',
description='a python package for generating coded apertures',
long_description='CodedApertures is a python package that allows one to easily generate and display common coded aperture patterns. Coded apertures are a spatial encoding technique for straight-line optics, wherein traditional lensing (e.g., visible light) is not possible. Even wherein tradiational lensing is possible, there may be other advantages (infinite depth of field). Coded apertures may therefore be used for hard x-ray and gamma-ray imaging for astrophysics, medical imaging, and homeland security applications.',
url='https://github.com/bpops/codedapertures',
author='bpops',
license='MIT',
install_requires=['pyprimes',
'numpy',
'matplotlib',
'scikit-commpy',
'scipy',],
zip_safe=False)