forked from honzascholtz/Qubespec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (48 loc) · 1.6 KB
/
setup.py
File metadata and controls
51 lines (48 loc) · 1.6 KB
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
import subprocess
from setuptools import setup
from setuptools import find_packages
def readme():
with open('README.md') as file:
return(file.read())
version = '0.1.0'
setup(name='QubeSpec',
version=version,
description='A library to optical/IFS spectra',
long_description=readme(),
classifiers=[
'Development Status :: 0 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
],
url='https://github.com/honzascholtz/qubespec',
author='Jan Scholtz',
author_email='honzascholtz@gmail.com',
license='Other/Proprietary License',
packages=["QubeSpec", "QubeSpec.detection", "QubeSpec.Dust", "QubeSpec.Fitting", "QubeSpec.Maps", "QubeSpec.Models",
"QubeSpec.Plotting","QubeSpec.Spaxel_fitting", "QubeSpec.Utils", "QubeSpec.Visualizations" ],
install_requires=[
'astropy>=5.2.0',
'ipython>7.31.0',
'matplotlib>=3.5.3',
'numba>=0.56.3',
'tqdm>=4.40.0',
'emcee>=3.1.0',
'brokenaxes>=0.5.0',
'corner>=2.2.1',
'scipy>=1.9.1',
'multiprocess',
'spectres',
'photutils',
'sep'],
python_requires='>=3.8.0',
#entry_points={
# 'console_scripts': [
# 'inzimar = inzimar.inzimar:main',
# ],
#},
include_package_data=True,
#package_data={'': ['/jadify_temp/*', '/Models/FeII_templates/*']},
zip_safe=False
)