-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.py
78 lines (65 loc) · 2.02 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import subprocess
from codecs import open
from setuptools import setup, find_packages
from setuptools.command import develop, build_py
def readme():
with open("README.md", "r", "utf-8") as f:
return f.read()
class CustomDevelop(develop.develop, object):
"""
Class needed for "pip install -e ."
"""
def run(self):
subprocess.check_call("make", shell=True)
super(CustomDevelop, self).run()
class CustomBuildPy(build_py.build_py, object):
"""
Class needed for "pip install s2p"
"""
def run(self):
super(CustomBuildPy, self).run()
subprocess.check_call("make", shell=True)
subprocess.check_call("cp -r bin lib build/lib/", shell=True)
try:
from wheel.bdist_wheel import bdist_wheel
class BdistWheel(bdist_wheel):
"""
Class needed to build platform dependent binary wheels
"""
def finalize_options(self):
bdist_wheel.finalize_options(self)
self.root_is_pure = False
except ImportError:
BdistWheel = None
requirements = ['numpy',
'scipy',
'rasterio[s3]>=1.2a1',
'utm',
'pyproj>=3.0.0',
'beautifulsoup4[lxml]',
'plyfile',
'plyflatten>=0.2.0',
'ransac',
'rpcm>=1.4.6',
'srtm4>=1.1.2',
'requests']
extras_require = {
"test": ["pytest", "pytest-cov", "psutil"],
}
setup(name="s2p",
version="1.0b26.dev0",
description="Satellite Stereo Pipeline.",
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/cmla/s2p',
packages=['s2p'],
install_requires=requirements,
extras_require=extras_require,
cmdclass={'develop': CustomDevelop,
'build_py': CustomBuildPy,
'bdist_wheel': BdistWheel},
python_requires=">=3",
entry_points="""
[console_scripts]
s2p=s2p.cli:main
""")