-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 920 Bytes
/
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
from setuptools import setup
import pathlib
cwd = pathlib.Path(__file__).parent.resolve()
long_description = (cwd / 'README.md').read_text(encoding='utf-8')
setup(name='mesh_simplification',
version='1.0.0',
description='Bathymetric Mesh Simplification',
license='MIT',
long_description=long_description,
author='Noel Dyer',
package_dir={'': 'src'},
packages=['mesh_simplification'],
install_requires=['triangle',
'numpy==2.0.2',
'shapely>=1.8.0',
'openmesh==1.2.1'],
python_requires='>=3.6, <4',
url='https://github.com/NoelDyer/Bathymetric-Mesh-Simplification',
long_description_content_type='text/markdown',
zip_safe=True,
entry_points={'console_scripts':
['mesh_simplification=mesh_simplification.main:main']}
)