-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
41 lines (38 loc) · 1.19 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
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
from dedop.version import __version__
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
setup(
name="dedop",
version=__version__,
description='Delay Doppler (Altimeter) Processor',
license='GPLv3',
author='DeDop Development Team',
packages=packages,
package_data={
'dedop.ui.data.notebooks': ['*.ipynb'],
'dedop.ui.data.config': ['*.json'],
'dedop.ui.data.cryosat_config': ['*.json']
},
entry_points={
'console_scripts': [
'dedop = dedop.cli.main:main',
'dedop-webapi = dedop.webapi.main:main'
]
},
# install_requires=['typing',
# 'numpy',
# 'scipy',
# 'netcdf4',
# 'jupyter',
# 'matplotlib',
# 'ipywidgets',
# 'bokeh',
# 'cate-util',
# 'numexpr'
# ],
# extras_require={'dedop.ui': ['matplotlib >= 1.4', 'basemap >= 1.0.7']},
# author_email='',
# maintainer='',
# maintainer_email='',
# url='',
)