-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
22 lines (20 loc) · 825 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
#from numpy.distutils.core import setup
#from numpy.distutils.extension import Extension
from setuptools import setup, Extension
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='rampy',
version='0.4.3',
description='A Python module containing functions to treat spectroscopic (XANES, Raman, IR...) data',
url='https://github.com/charlesll/rampy',
author='Charles Le Losq',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
license='GNU-GPLv2',
packages=['rampy', 'rampy.tests'],
install_requires=['numpy>=1.12','scipy','sklearn','pandas'],
extras_require={
'gcvspline': ["gcvspline"],
'mixing': ["cvxpy>=1.0"],},
zip_safe=False)