forked from ausseabed/point-cloud-checks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (40 loc) · 982 Bytes
/
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
40
41
from setuptools import setup, find_packages
setup(
name='ausseabed.mbespc',
namespace_packages=['ausseabed'],
version='0.0.1',
url='https://github.com/ausseabed/point-cloud-checks',
author=(
"Josh Sixsmith;"
"Lachlan Hurst;"
),
author_email=(
),
description=(
'Quality Assurance checks for point clouds derived from Multi Beam Echo '
'Sounder data'
),
entry_points={
"gui_scripts": [],
"console_scripts": [
'mbespc = ausseabed.mbespc.app.cli:cli',
],
},
packages=[
'ausseabed.mbespc',
'ausseabed.mbespc.app',
'ausseabed.mbespc.lib',
'ausseabed.mbespc.qax'
],
zip_safe=False,
package_data={},
install_requires=[
'Click',
'ausseabed.qajson',
'geopandas>=0.14.1',
'laspy',
],
tests_require=['pytest'],
)