forked from marcuskd/pyram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (29 loc) · 994 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyram"
version = "1.2.3"
dependencies = ["numba", "numpy"]
authors = [
{ name = "Hunter Akins", email = "[email protected]" },
{ name = "William Jenkins", email = "[email protected]" },
{ name = "Marcus Donnelly", email = "[email protected]" },
]
description = "Python adaptation of the Range-dependent Acoustic Model (RAM)"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
keywords = ["RAM", "Acoustics", "Parabolic Equation"]
[project.urls]
Homepage = "https://github.com/TritonOA/pyram"
Issues = "https://github.com/TritonOA/pyram/issues"
[tool.setuptools.packages.find]
where = ["src/"]