-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (42 loc) · 1.6 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
with open('requirements.txt') as req_file:
requirements = req_file.read()
setup(
name='fringe',
version='1.0.7',
description="Python implementation of computational optical propagation and digital holography.",
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
url='https://github.com/farhadnkm/fringe',
author="Farhad Niknam",
author_email='farhad.niknam.em@gmail.com',
python_requires='>=3.6, <4',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Image Processing'
],
keywords='diffraction, angular spectrum, holography, holograms, phase recovery,',
#package_dir={'': 'src'},
packages=find_packages(),
license="MIT license",
install_requires=requirements,
setup_requires=['pytest-runner', 'flake8'],
tests_require=['pytest', 'jupyter'],
test_suite='tests',
zip_safe=False,
)