-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
39 lines (36 loc) · 1.13 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
requirements = [
'laspy',
'fiona ~= 1.8.3',
'rasterio',
'scipy',
'h5py',
'pandas',
'numpy',
'simplekml',
'pyproj',
'matplotlib']
setuptools.setup(
name="phoreal",
version = "3.31.1",
author = "University of Texas CSR",
author_email = "[email protected]",
license = 'UT AUSTIN RESEARCH LICENCE',
description = "A python package for reading and analysis of ATL03/ATL08 ICESat-2 data",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/icesat-2UT/PhoREAL",
project_urls ={
"Bug Tracker": "https://github.com/icesat-2UT/PhoREAL/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Idependent",
],
packages=['phoreal'],
python_requires=">=3.6",
include_package_data=True,
install_requires=requirements,
)