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