forked from WEC-Sim/bemio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·45 lines (28 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""A setuptools based setup module for bemio
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from bemio.__version__ import base
setup(
name='bemio',
version=base(),
description='bemio',
long_description='Boundary Element Method Input/Output',
url='https://github.com/WEC-Sim/bemio',
author='Michael Lawson, Yi-Hsiang Yu, Carlos Michelen',
author_email='[email protected]',
license='Apache 2.0',
classifiers=[
'Development Status :: Release',
'Intended Audience :: Ocean research community',
'License ::Apache 2.0',
'Programming Language :: Python :: 2.7'
],
keywords='bemio',
packages=find_packages(exclude=['doc', 'tutorials']),
install_requires=['numpy', 'scipy', 'h5py', 'progressbar2', 'astropy'],
extras_require={
'dev': [],
'test': [],
},
)