-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
36 lines (30 loc) · 1 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
#!/usr/bin/env python
"""
Setup script for C-SHELPh.
Run using the following command:
$ pip install .
"""
from setuptools import setup
import glob
import cshelph
setup(
name="cshelph",
version=cshelph.CSHELPH_VERSION,
description="C-SHELPh is the Classification of Sub-aquatic Height Extracted Photons. It is designed to isolate bathymetric photons in ICESat2 ATL03 files.",
author="Nathan Thomas",
author_email="[email protected]",
scripts=glob.glob("bin/*.py"),
packages=["cshelph"],
license="LICENSE.txt",
url="https://github.com/nmt28/C-SHELPh",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Remote Sensing Scientists",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)