forked from geckos-survey/ngist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (56 loc) · 2.12 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
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__)), 'gistPipeline/_version.py')) as versionFile:
return(versionFile.readlines()[-1].split()[-1].strip("\"'"))
setup(name='gistPipeline',
version=versionNumber(),
description='The GIST Framework: A 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 :: Other/Proprietary License',
],
url='https://abittner.gitlab.io/thegistpipeline/',
author='Adrian Bittner',
author_email='[email protected]',
license='Other/Proprietary License',
packages=find_packages(),
install_requires=[
'astropy>=3.1',
'emcee>=2.2',
'matplotlib>=3.1',
'numpy>=1.17',
# 'PyQt6>=5.10',
'scipy>=1.3',
'pyyaml>=5.3',
'vorbin>=3.1',
'ppxf>=6.7',
'plotbin>=3.1',
'printStatus>=1.0',
'multiprocess>=0.5'
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'gistPipeline = gistPipeline.MainPipeline:main'
],
'gui_scripts': [
'Mapviewer = gistPipeline.Mapviewer:main',
'gistPlot_kin = gistPipeline.plotting.gistPlot_kin:main',
'gistPlot_lambdar = gistPipeline.plotting.gistPlot_lambdar:main',
'gistPlot_gas = gistPipeline.plotting.gistPlot_gas:main',
'gistPlot_sfh = gistPipeline.plotting.gistPlot_sfh:main',
'gistPlot_ls = gistPipeline.plotting.gistPlot_ls:main'
],
},
include_package_data=True,
zip_safe=False)