-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 1.18 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='WavelengthCalibrationTool',
version='0.1',
description='Tool for doing wavelength calibration of arc spectrum',
long_description = readme(),
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.6+',
'Topic :: Scientific/Engineering :: Astronomy',
],
keywords='Wavelength Calibration Spectrum Astronomy',
url='https://github.com/indiajoe/WavelengthCalibrationTool',
author='Joe Ninan',
author_email='[email protected]',
license='GPLv3+',
packages=['WavelengthCalibrationTool'],
entry_points = {
'console_scripts': ['iidentify=WavelengthCalibrationTool.iidentify:main',
'reidentify=WavelengthCalibrationTool.reidentify:main',
'recalibrate=WavelengthCalibrationTool.recalibrate:main'],
},
install_requires = [
'numpy',
'matplotlib',
'astropy',
],
include_package_data=True,
zip_safe=False)