-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 680 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 680 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_rs",
description="Sea Ice Remote Sensing",
version=".".join(str(d) for d in __version__),
author="Sangwon Lim",
author_email="sangwonl@uvic.ca",
packages=["sea_ice_rs"],
include_package_data=True,
scripts="""
./scripts/threshold
./scripts/dist-stat
./scripts/extract-colour
./scripts/connect-lines
./scripts/centroids
./scripts/create-datasets
./scripts/neural-network
./scripts/normalize
./scripts/GLCM
./scripts/CNN
./scripts/test-model
./scripts/predict
""".split(),
)