-
Notifications
You must be signed in to change notification settings - Fork 0
/
console.py
35 lines (33 loc) · 1.1 KB
/
console.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
# -*- coding: utf-8 -*-
# These are in a separate module so that symlinks can be made automatically.
scripts = [
# symbolic linker
"ln_scripts = scripts.ln_scripts:main",
# gis
"gis-bbox = scripts.gis.bbox:main",
"gis-dbf2csv = scripts.gis.dbf2csv:main",
"gis-polygon = scripts.gis.polygon:main",
"gis-sum = scripts.gis.sum:main",
"gis-ogr-merge = scripts.gis.ogr_merge:main",
"gis-ogr-snap = scripts.gis.ogr_snap:main",
"gis-gdal-nan2ndv = scripts.gis.gdal_nan2ndv:nan2ndv",
"gis-gdal-ndv2ndv = scripts.gis.gdal_ndv2ndv:main",
"gis-gdal-cut2ndv = scripts.gis.gdal_cut2ndv:main",
# various
"annotate = scripts.annotate:main",
"enumerate = scripts.enumerate:main",
"gcalendar = scripts.gcalendar:main",
"newpy = scripts.newpy:main",
"track = scripts.track:main",
"tst-exif = scripts.tst_exif:main",
]
# Some extra commands to symlink
commands = [
"black",
"flake8",
"fullrelease",
"ipython",
"pip",
"pre-commit",
"python",
]