-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
61 lines (58 loc) · 2.05 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from setuptools import setup
from setuptools import find_packages
import os
def readme():
with open('README.md') as file:
return(file.read())
def versionNumber():
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'ngistPipeline/_version.py')) as versionFile:
return(versionFile.readlines()[-1].split()[-1].strip("\"'"))
setup(name='ngistPipeline',
version=versionNumber(),
description='The nGIST Pipeline: An updated multi-purpose tool for the analysis and visualisation of (integral-field) spectroscopic data',
long_description_content_type="text/markdown",
long_description=readme(),
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'License :: MIT',
],
url='https://geckos-survey.github.io/gist-documentation/',
author='Amelia Fraser-McKelvie & Jesse van de Sande',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'astropy',
'numpy',
'scipy',
'matplotlib',
'spectral-cube',
'extinction',
'ipython',
'jupyter',
'h5py',
'joblib',
'tqdm',
'pip',
'ppxf',
'vorbin',
'plotbin',
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'ngistPipeline = ngistPipeline.MainPipeline:main'
],
'gui_scripts': [
'Mapviewer = ngistPipeline.Mapviewer:main',
'gistPlot_kin = ngistPipeline.plotting.gistPlot_kin:main',
'gistPlot_gas = ngistPipeline.plotting.gistPlot_gas:main',
'gistPlot_sfh = ngistPipeline.plotting.gistPlot_sfh:main',
'gistPlot_ls = ngistPipeline.plotting.gistPlot_ls:main'
],
},
include_package_data=True,
zip_safe=False)