-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
executable file
·30 lines (28 loc) · 1.08 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
import setuptools
from glob import glob
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="captoolkit",
version="0.1.0",
license="Apache",
author="Fernando Paolo and Johan Nilsson",
author_email="paolofer@jpl.nasa.gov, johan.nilsson@jpl.nasa.gov",
description="JPL Cryosphere Altimetry Processing Toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fspaolo/captoolkit",
# NOTE: Check `lib` when including in future
# packages=['captoolkit', 'captoolkit.lib'],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
# NOTE 1: Install all python scripts as stand-alone command line utils.
# NOTE 2: If Anaconda Python, executable scripts will be placed
# at ~/anaconda3/bin, otherwise the default is /usr/local/bin
scripts=glob("captoolkit/*.py"),
)