-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 1.07 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
from setuptools import setup, find_packages
setup(
name='shoreline_transects',
version='1.0',
author='Henri De Boever',
author_email='[email protected]',
url='cascadiacoast.com',
license='MIT',
description='A tool to generate perpendicular transects given an input list of reaches that define an area of interest.',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
],
keywords=['Shoreline Transect Generator'],
packages=find_packages(exclude=['docs', 'data', 'notebooks', 'tests', 'cover']),
python_requires='>=2.7, <4',
install_requires=[
'matplotlib',
'numpy',
'scipy',
'simplekml',
'pyproj',
'shapely',
],
)