-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.07 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.07 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
from setuptools import setup, find_packages
with open("README.md", 'r') as f:
long_description = f.read()
def parse_requirements(filename):
with open(filename, 'r') as f:
return [line.strip() for line in f if line.strip() and not line.startswith('#')]
setup(
name='crocolake-python',
version='0.0.1',
description='Jupyter notebooks to use CrocoLake',
license="GNU GPLv3",
long_description=long_description,
author='Enrico Milanese',
author_email='enrico.milanese@whoi.edu',
packages=find_packages(),
install_requires=[
'argopy==0.1.15',
'bokeh',
'cartopy',
'dask',
'dask[dataframe]',
'distributed',
'gsw',
'jupyterlab',
'matplotlib',
'numpy==1.26.4',
'pandas',
'psutil==5.9.8',
'pyarrow',
'pytest',
'setuptools',
'tqdm',
'urllib3==1.26.6',
'xarray',
's3fs'
],
entry_points={
'console_scripts': [
'download_db = scripts.download_db:main',
],
},
)