forked from noaa-ocs-hydrography/kluster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
165 lines (139 loc) · 5.74 KB
/
setup.py
File metadata and controls
165 lines (139 loc) · 5.74 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import io
import os
import sys
from shutil import rmtree
from setuptools import find_namespace_packages, setup, Command
# see https://github.com/navdeep-G/setup.py/blob/master/setup.py
# Package meta-data.
NAME = 'hstb.kluster'
DESCRIPTION = 'Distributed hydrographic multibeam processing system'
URL = 'https://github.com/noaa-ocs-hydrography/kluster'
EMAIL = 'eric.g.younkin@noaa.gov'
AUTHOR = 'Eric Younkin'
REQUIRES_PYTHON = '>=3.8.10'
VERSION = ''
# What packages are required for this module to be executed?
REQUIRED = [
'bokeh==2.4.2',
'dask==2021.12.0',
'distributed==2021.12.0',
'fasteners==0.16',
'laspy==2.0.3',
'matplotlib==3.5.1', # >=3.3.3 required, FuncAnimation and Pyside2/matplotlib do not play well in 3.2.1
'numba==0.53.0',
'openpyxl==3.0.9',
'psutil==5.8.0',
'numpy==1.21.5', # cannot be 1.19.4, see https://tinyurl.com/y3dm3h86
'pandas==1.3.5',
'pyshp==2.1.3',
'pyepsg==0.4.0', # cartopy requirement not installed with conda install, duplicates pyproj functionality...
'pyopengl==3.1.5',
'pyproj==3.3.0',
'pyqtgraph==0.12.3',
'python-geohash==0.8.5',
'qdarkstyle==3.0.2',
's3fs==0.4.2',
'scipy==1.7.3',
'shapely==1.8.0',
'sortedcontainers==2.4.0',
'watchdog>=2.1.6',
'xarray==0.20.2',
'zarr==2.10.3',
'hstb.drivers @ git+https://github.com/selimnairb/HTSB-drivers.git#egg=hstb.drivers',
'hstb.shared @ git+https://github.com/noaa-ocs-hydrography/shared.git#egg=hstb.shared',
'vyperdatum @ git+https://github.com/noaa-ocs-hydrography/vyperdatum.git#egg=vyperdatum',
'bathygrid @ git+https://github.com/noaa-ocs-hydrography/bathygrid.git#egg=bathygrid'
# note to self about gdal. I want gdal >= 3.2.3 to get the bag template fix, but qgis appears to only
# support gdal=3.2.2 in it's latest version. So I need to wait on qgis to get the gdal fix.n
# Pyside stuff
# first had to downgrade to PySide2 5.14.1 to avoid shiboken import errors https://bugreports.qt.io/browse/PYSIDE-1257
# supposed to be fixed in 5.15.2 but apparently people still see it not working
# also hit an import error with matplotlib 3.3.3 with pyside 5.15.2, sticking with 5.13.2 for now
# 'PySide2==5.13.2', installed with conda, no distro in pip
# 'qgis==3.18.0' Required for GUI, but must be conda installed with PROJ
# 'vispy==0.6.6' Required for visualizations
]
# What packages are optional?
EXTRAS = {
'entwine export': ['entwine', 'nodejs'],
}
# The rest you shouldn't have to touch too much :)
# ------------------------------------------------
# Except, perhaps the License and Trove Classifiers!
# If you do change the License, remember to change the Trove Classifier for that!
here = os.path.abspath(os.path.dirname(__file__))
# Import the README and use it as the long-description.
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
try:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
except FileNotFoundError:
long_description = DESCRIPTION
# Load the package's __version__.py module as a dictionary.
about = {}
if not VERSION:
with open(os.path.join(here, 'HSTB', 'kluster', '__version__.py')) as f:
exec(f.read(), about)
else:
about['__version__'] = VERSION
class UploadCommand(Command):
"""Support setup.py upload."""
description = 'Build and publish the package.'
user_options = []
@staticmethod
def status(s):
"""Prints things in bold."""
print('\033[1m{0}\033[0m'.format(s))
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
self.status('Removing previous builds…')
rmtree(os.path.join(here, 'dist'))
except OSError:
pass
self.status('Building Source and Wheel (universal) distribution…')
os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable))
self.status('Uploading the package to PyPI via Twine…')
os.system('twine upload dist/*')
self.status('Pushing git tags…')
os.system('git tag v{0}'.format(about['__version__']))
os.system('git push --tags')
sys.exit()
# Where the magic happens:
setup(
name=NAME,
version=about['__version__'],
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_namespace_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
# If your package is a single module, use this instead of 'packages':
# py_modules=['mypackage'],
# entry_points={
# 'console_scripts': ['mycli=mymodule:cli'],
# },
install_requires=REQUIRED,
extras_require=EXTRAS,
include_package_data=True,
license='CC0-1.0',
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
# $ setup.py publish support.
# cmdclass={
# 'upload': UploadCommand,
# },
)