-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
66 lines (58 loc) · 1.72 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["hatchling", 'hatch-vcs']
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/echosms"]
[project]
name = 'echosms'
license = {file = "LICENSE"}
keywords = ["acoustic", "backscatter", "model"]
authors = [
{ name="Mike Jech"},
{ name="Gavin Macaulay"}
]
description = 'Acoustic backscattering models used in aquatic ecosystem research'
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy",
"pandas",
"xarray",
'tomli >= 1.1.0; python_version < "3.11"',
'trimesh',
'spheroidalwavefunctions',
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering',
]
dynamic = [ 'version']
[tool.hatch.version]
source = 'vcs'
[tool.hatch.version.raw-options]
local_scheme = "no-local-version" # otherwise the non-tagged version is not accepted by testpypi
[tool.pytest.ini_options]
testpaths = ['tests',]
addopts = ["--import-mode=importlib",]
[project.optional-dependencies]
dev = [
"mkdocstrings[python]",
"matplotlib",
"twine",
"pytest"
]
[project.urls]
Homepage = 'https://github.com/ices-tools-dev/echoSMs'
Issues = 'https://github.com/ices-tools-dev/echoSMs/issues'
Documentation = 'https://ices-tools-dev.github.io/echoSMs'
Repository = 'https://github.com/ices-tools-dev/echoSMs'
Discussions = 'https://github.com/ices-tools-dev/echoSMs/discussions'