-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.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
from setuptools import setup, find_packages
# https://packaging.python.org/guides/single-sourcing-package-version/
version_info = {}
with open("rippl/version.py") as file:
exec(file.read(), version_info)
# defining dependencies
with open("requirements.txt") as fp:
install_requires = fp.read()
setup(
name="RIPPL",
version=version_info["__version__"],
author="Gert Mulder",
author_email="[email protected]",
url="https://github.com/TUDelftGeodesy/RIPPL",
packages=find_packages(),
license="GNU LGPLv3",
description="[R]adar [I]nterferometric [P]arallel [P]rocessing [L]ab",
setup_requires=["numpy"],
install_requires=install_requires,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU LGPLv3",
"Programming Language :: Python :: 3",
],
keywords=[
"InSAR",
"Sentinel-1",
"SAR",
"Interferometry",
"Parallel processing",
"Stack processing",
"Remotes Sensing",
],
)