-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 983 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 983 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
from setuptools import setup, find_packages
setup(name='pyram',
version='1.3.0',
description='Python adaptation of the Range-dependent Acoustic Model (RAM)',
author='Marcus Donnelly',
author_email='marcus.k.donnelly@gmail.com',
url='https://github.com/marcuskd/pyram',
license='BSD',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering'
],
keywords=['RAM',
'Acoustics',
'Parabolic Equation'
],
packages=find_packages(),
install_requires=['numpy >= 1.25',
'numba >= 0.58'
],
include_package_data=True
)