-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (47 loc) · 1.41 KB
/
setup.py
File metadata and controls
53 lines (47 loc) · 1.41 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
52
53
from setuptools import setup
"""
For full functionality, please download and install the following software:
modelBC03
https://github.com/aileisun/modelBC03
within ~/.bashrc please add:
export "PYTHONPATH=$PYTHONPATH:~/where/is/your/modelBC03/"
readAtlasImages
http://www.sdss.org/dr12/algorithms/read_psf/
readAtlasImages-v5_4_11.tar.gz
within ~/.bashrc please add:
DIRREADATLAS='~/where/is/your/readAtlas/readAtlasImages-v5_4_11/'
export DIRREADATLAS
alias dir_readatlas="$DIRREADATLAS"
humvi
https://github.com/drphilmarshall/HumVI
within ~/.bashrc please add:
HUMVI='~/where/is/your/HumVI-master/compose.py'
export HUMVI
alias humvi="$HUMVI"
"""
setup(name='bubbleimg',
version='1.0',
description='Produce emission-line images from broadband images',
url='http://github.com/aileisun/bubbleimg',
author='Ai-Lei Sun',
author_email='aileisundr@gmail.com',
license='MIT',
packages=['bubbleimg'],
install_requires=[
'numpy',
'matplotlib',
'astropy',
'scipy',
'astroquery',
'scikit-image',
'shapely',
'PyAstronomy',
'paramiko',
'requests',
],
dependency_links=[
'https://github.com/aileisun/modelBC03',
'http://www.sdss.org/dr12/algorithms/read_psf/',
'https://github.com/drphilmarshall/HumVI',
],
zip_safe=False)