forked from eawag-surface-waters-research/PyLake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 764 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 764 Bytes
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
from setuptools import setup, find_packages
with open('README.md') as f:
README = f.read()
VERSION = '0.1.5'
DESCRIPTION = 'pylake'
setup(
name="pylake",
version=VERSION,
author="Hugo Cruz",
author_email="<huggcruzz@gmail.com>",
description=DESCRIPTION,
long_description=README,
long_description_content_type='text/markdown',
packages=find_packages(),
url='https://github.com/hugocruzz/pylake',
install_requires=[
'numpy>=1.19.5',
'pandas>=1.1.5',
'PyYAML>=6.0',
'scipy>=1.5.4',
'dask>=2022.02.1',
'xarray>=0.19.0',
'seawater>=3.3.4'
],
license="MIT",
keywords=['python', 'pylake', 'Lake analyzer', 'environmental data', 'Physical properties'],
)