forked from erdc/getdatatestbed
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·51 lines (50 loc) · 1.7 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·51 lines (50 loc) · 1.7 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
"""Setup tools for getDataTestBed."""
from setuptools import setup, find_packages
setup(
name='getdatatestbed',
version='0.9.0',
description='Utilities for retrieving data from the USACE Field Research Facility Coastal Model Test Bed (CMTB)',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Spicer Bak',
author_email='spicer.bak@usace.army.mil',
url='https://github.com/SBFRF/getdatatestbed',
packages=find_packages(exclude=['tests', 'tests.*']),
python_requires='>=3.9',
install_requires=[
'numpy>=1.20.1',
'pandas>=1.2.4',
'netCDF4>=1.5.7',
'scikit-image>=0.18.1',
'pyproj>=3.0.0',
'matplotlib>=3.0.0',
'scipy>=1.6.0',
'python-dateutil>=2.8.0',
],
extras_require={
'dev': [
'pytest>=7.0.0',
'pytest-cov>=4.0.0',
'flake8>=5.0.0',
'pydocstyle>=6.0.0',
],
'test': [
'pytest>=7.0.0',
'pytest-cov>=4.0.0',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: GIS',
],
keywords='oceanography coastal data-retrieval netcdf thredds frf usace',
)