-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (23 loc) · 901 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='sounding_selection',
version='1.0.0',
description='Cartographic Sounding Selection',
license='MIT',
long_description=long_description,
author='Noel Dyer',
package_dir={'': 'src'},
packages=['sounding_selection'],
install_requires=['triangle',
'numpy==1.21.5',
'shapely==1.8.0',
'pyshp==2.3.0'],
python_requires='>=3.6, <4',
url='https://github.com/NoelDyer/Sounding-Selection',
long_description_content_type='text/markdown',
zip_safe=True,
entry_points={'console_scripts':
['sounding_selection=sounding_selection.main:main']}
)