-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (26 loc) · 935 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
#!/usr/bin/env python
from distutils.core import setup
import os
long_description = "Please read the documentation on Github."
if os.path.exists("README.md"):
long_description = open("README.md").read()
setup(
name="pyMMF",
version="0.6",
description="Multimode optical fiber simulation package.",
author="Sebastien M. Popoff & Pavel Gostev",
author_email="[email protected]",
url="https://www.wavefrontshaping.net",
license="MIT",
packages=["pyMMF", "pyMMF.solvers"],
long_description=long_description,
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
],
install_requires=["numpy", "matplotlib", "scipy", "numba", "joblib"],
)