-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (28 loc) · 1.04 KB
/
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
import setuptools
import pathlib
import os
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# Get the long description from the README file
with open(os.path.join(HERE, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='thyme',
license='BSD-2-Clause',
author='Erin Nagel, Jason Greenlaw',
author_email='[email protected], [email protected]',
description='Tools for Hydrodynamic Model Output Extraction and Processing',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/noaa-ocs-modeling/thyme',
packages=setuptools.find_packages(),
use_scm_version=True,
setup_requires=['numpy', 'setuptools_scm'],
install_requires=['shapely', 'numpy', 'scipy', 'netCDF4', 'gdal'],
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
],
)