-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
26 lines (25 loc) · 843 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
from setuptools import setup
setup(
name = "py-fmas",
version = "1.0",
author = "Oliver Melchert",
author_email = "melchert@iqo.uni-hannover.de",
description = "Ultrashort optical pulse propagation in terms of the analytic signal",
keywords = "Ultrashort pulse propagation, analytic signal, Raman effect, Spectrograms",
license = "MIT",
packages=['fmas','fmas/solver','fmas/models'],
classifiers=[
"Development Status :: Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
],
install_requires=[
"numpy>=1.19.4",
"scipy>=1.5.4",
"matplotlib>=3.3.3",
"h5py>=3.1.0"
],
python_requires='>=3.9',
)