-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
33 lines (31 loc) · 978 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="waveprop",
version="0.0.10",
author="Eric Bezzam",
author_email="[email protected]",
description="Functions and scripts to simulate free-space optical wave propagation.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ebezzam/waveprop",
# download_url = "https://github.com/ebezzam/waveprop/archive/refs/tags/v0.0.1.tar.gz",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=[
"torch>=1.12.1",
"torchvision>=0.13.1",
"opencv-python",
"numpy",
"scipy",
"matplotlib",
"pyffs",
"progressbar",
],
include_package_data=True,
)