-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 764 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 764 Bytes
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
from setuptools import setup
__version__ = (0, 0, 0)
setup(
name="sea_ice_SAR",
description="Deep Learning Architectures for Sea Ice Thickeness and Roughness Remote Sensing",
version=".".join(str(d) for d in __version__),
author="Sangwon Lim",
author_email="sangwonl@uvic.ca",
packages=["sea_ice_SAR"],
include_package_data=True,
scripts="""
./scripts/reduce_csv
./scripts/create_dataset
./scripts/CAE
./scripts/NN_regression
./scripts/NN_classification
./scripts/pixel_select
./scripts/test_regression
./scripts/test_classification
./scripts/boxplot
./scripts/predict
./scripts/pixel_select
./scripts/output_image
""".split(),
)