-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
52 lines (48 loc) · 1.52 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
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
requirements = [
"gdal>=3.0.1",
"kalasiris>=1.8.0",
"matplotlib>=3.2.1",
"multidict",
"numpy>=1.18.1",
"pvl>=1.0.1",
"scipy>=1.4.1"
]
setup(
entry_points={
'console_scripts': [
'EDR_Stats=hiproc.EDR_Stats:main',
'HiBeautify=hiproc.HiBeautify:main',
'HiCal=hiproc.HiCal:main',
'HiColorInit=hiproc.HiColorInit:main',
'HiColorNorm=hiproc.HiColorNorm:main',
'HiJACK=hiproc.HiJACK:main',
'HiJitReg=hiproc.HiJitReg:main',
'HiNoProj=hiproc.HiNoProj:main',
'HiPrecisionInit=hiproc.HiPrecisionInit:main',
'HiSlither=hiproc.HiSlither:main',
'HiStitch=hiproc.HiStitch:main',
'HiccdStitch=hiproc.HiccdStitch:main',
'JitPlot=hiproc.JitPlot:main',
'SlitherStats=hiproc.SlitherStats:main',
'bitflips=hiproc.bitflips:main',
'fft_clean=hiproc.fft_clean:main',
'hiproc=hiproc.hiproc:main',
'lisfix=hiproc.lisfix:main',
'mdr2cub=hiproc.mdr2cub:main',
'resolve_jitter=hiproc.resolve_jitter:main',
'rjplot=hiproc.rjplot:main'
],
},
install_requires=requirements,
include_package_data=True,
package_data={
"hiproc": ["data/*"],
},
keywords='HiRISE',
packages=find_packages(include=['hiproc', 'hiproc.*']),
test_suite='tests',
zip_safe=False,
)