forked from charlesll/rampy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 915 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 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.5',
# 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','scikit-learn','pandas'],
# extras_require={
# 'gcvspline': ["gcvspline"],
# 'mixing': ["cvxpy>=1.0"],},
# zip_safe=False)
from setuptools import setup
setup(use_scm_version=True)