Openholo  v4.1
Open Source Digital Holographic Library
setup.py
Go to the documentation of this file.
1 import setuptools
2 import os
3 
4 mydir = os.path.dirname(__file__)
5 if mydir:
6  os.chdir(mydir)
7 
8 with open("README.md", "r") as fhandle:
9  long_description = fhandle.read()
10 
11 version = '0.0.3'
12 
13 setuptools.setup(
14  name="ophpy",
15  version=version,
16  author="YoungRok Kim",
17  author_email="faller825@khu.ac.kr",
18  description="Open source project about Computer Generated Hologram",
19  long_description_content_type="text/markdown",
20  long_description=long_description,
21  url="https://github.com/robin9804/openholo_py",
22  packages=setuptools.find_packages(),
23  install_requires=['numpy', 'matplotlib', 'pillow', 'plyfile', 'numba'],
24  classifiers=[
25  "Programming Language :: Python :: 3",
26  "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
27  "Operating System :: OS Independent",
28  ],
29  python_requires='>=3.6',
30 )