forked from openearth/windsurf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 718 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 718 Bytes
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
from setuptools import setup, find_packages
setup(
name='windsurf',
version='0.0',
author='Bas Hoonhout',
author_email='b.m.hoonhout@tudelft.nl',
packages=find_packages(),
description='A composite model for simulating integrated nearshore and aeolian sediment transport',
long_description=open('README.txt').read(),
install_requires=[
'numpy',
'docopt',
],
#setup_requires=[
# 'sphinx',
# 'sphinx_rtd_theme'
#],
tests_require=[
'nose'
],
test_suite='nose.collector',
entry_points={'console_scripts': [
'windsurf = windsurf.console:windsurf',
'windsurf-setup = windsurf.console:windsurf_setup'
]},
)