forked from stefangri/raman_spectrum_analysis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (36 loc) · 1.29 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
"""Setup file for spectrum analysis."""
from zipfile import ZipFile
from setuptools import setup, find_packages
setup(
name="spectrum_analysis",
version="1.0",
description="Python package for spectrum analysis",
author="stefangri, hmoldenhauer",
url="https://github.com/hmoldenhauer/spectrum_analysis",
download_url="https://github.com/hmoldenhauer/spectrum_analysis",
license="MIT",
package_dir={"": "lib"},
packages=find_packages("lib"),
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"lmfit>=0.9.11",
"matplotlib>=3.1.1",
"numpy>=1.16.4",
"pandas>=0.24.0",
"Pillow>=7.0.0",
"pympler>=0.9",
"pytest>=5.3.5",
"PyWavelets>=1.0.1",
"scikit-image>=0.16.2",
"scipy>=1.3.0",
"statsmodels>=0.9.0",
"svgpath2mpl>=0.2.1",
],
# matplotlib has C/C++ extensions, so it's not zip safe.
# Telling setuptools this prevents it from doing an automatic
# check for zip safety.
zip_safe=False,
)