-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 1.14 KB
/
setup.py
File metadata and controls
41 lines (40 loc) · 1.14 KB
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="multibeam_tools",
namespace_packages=[
"multibeam_tools"
],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests", "*.test*", ]),
package_data={
"": [
'media/*.*',
],
},
zip_safe=False,
setup_requires=[
"setuptools",
"wheel",
],
install_requires=[
"PySide2",
"utm",
"scipy",
"numpy",
"matplotlib"
],
python_requires='>=3.5',
description="Multibeam tools for Sea Acceptance Trials or Quality Assessment Testing.",
keywords="hydrography ocean mapping",
url="https://github.com/MBAdv/multibeam_tools",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: GIS',
],
)