-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (54 loc) · 1.62 KB
/
setup.py
File metadata and controls
58 lines (54 loc) · 1.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Lynette Davis
# ldavis@ccom.unh.edu
# Center for Coastal and Ocean Mapping
# University of New Hampshire
# March 2022
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
VERSION = '0.0.1'
DESCRIPTION = 'Package for real-time water column data visualization.'
setup(
name="WaterColumnPlotter",
version=VERSION,
author="Lynette Davis",
author_email="ldavis@ccom.unh.edu",
description=DESCRIPTION,
url="https://github.com/monsterkittykitty/WaterColumnPlotter",
keywords="hydrography ocean mapping sonar hydrographic survey water column",
packages=find_packages(),
python_requires=">=3.5",
install_requires=[
"numpy",
"pandas",
"pip",
"PyQt5",
"pyqtgraph",
"python-dateutil",
"pytz",
"scipy",
"setuptools",
"six"
],
entry_points={
"gui_scripts": [
"water_colum_plotter = WaterColumnPlotter.GUI.GUI_Main:main",
],
"console_scripts": [
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"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",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: GIS",
],
)