-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.43 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "waveresponse"
authors = [
{ name="4Subsea", email="python@4subsea.com" },
]
dynamic = ["version"]
description = "Vessel motion and wave utilities"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"numpy",
"pandas",
"scipy",
"pyarrow"
]
[project.urls]
"Homepage" = "https://github.com/4Subsea/waveresponse-python"
"Bug Tracker" = "https://github.com/4Subsea/waveresponse-python/issues"
"Documentation" = "https://docs.4insight.io/waveresponse/python/latest/"
[tool.setuptools.dynamic]
version = {attr = "waveresponse.__version__"}
[tool.pytest.ini_options]
pythonpath = [".", "src"]
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist =
py
docs
[testenv]
commands =
pytest --cov=waveresponse --cov-report html:cov_html-{envname} ./tests
deps =
pytest
pytest-cov
[testenv:docs]
basepython = python3.10
commands = sphinx-build -W -b html -d {toxworkdir}/docs_doctree docs {toxworkdir}/docs_out
deps =
sphinx==5.3.0
pydata-sphinx-theme==0.11.0
myst_parser
"""