-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
52 lines (49 loc) · 1.49 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
import os
from setuptools import find_packages, setup
_HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_HERE, "README.md"), "r") as f:
long_desc = f.read()
setup(
name="opensarlab_lib",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="A Python library to support ASF OpenSARlab's Jupyter Notebook repository https://github.com/ASFOpenSARlab/opensarlab-notebooks",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/ASFOpenSARlab/opensarlab-lib",
author="ASF OpenSARlab Team",
author_email="[email protected]",
license="BSD",
include_package_data=True,
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"asf_search",
"cartopy",
"gdal",
"hyp3_sdk",
"ipywidgets",
"IPython",
"matplotlib",
"numpy",
"pandas",
"pyproj",
"requests",
],
extras_require={
"dev": [
"pytest",
"pytest-cov",
]
},
)