-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
25 lines (22 loc) · 874 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
from setuptools import setup
import os
import sys
if sys.version_info[0] < 3:
with open('README.rst') as f:
long_description = f.read()
else:
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='BaselineRemoval',
version='0.1.6',
description='Perform baseline removal, baseline correction and baseline substraction for raman spectra using Modpoly, ImodPoly and Zhang fit. Returns baseline-subtracted spectrum',
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
author='StatguyUser',
url='https://github.com/StatguyUser/BaselineRemoval',
install_requires=['numpy','scikit-learn','scipy'],
download_url='https://github.com/StatguyUser/BaselineRemoval.git',
py_modules=["BaselineRemoval"],
package_dir={'':'src'},
)