-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 1.16 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
from setuptools import setup
import versioneer
requirements = ['schimpy','scipy>=1.4','numpy',
'matplotlib','scikit-image','scikit-fmm','gdal',
'nodepy','pydistmesh']
setup(
name='bismet',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Bathymetry interpolation smoothing and meshing tools using implicit functions, targetting fdaPDE in R.",
license="MIT",
author="Eli Ateljevich",
author_email='[email protected]',
url='https://github.com/water-e/bismet',
packages=['bismet'],
install_requires=requirements,
keywords='bismet',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
entry_points={
'console_scripts': [
'contour_smooth=bismet.contour_smooth:main',
'prep_mesh_sdist=bismet.prep_mesh_sdist:main',
'remove_skewed_cells=bismet.remove_skewed_cells:main',
'sdist_to_direction=bismet.sdist_to_direction:main'
],
}
)