-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 825 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (31 loc) · 825 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
27
28
29
30
31
32
33
34
35
36
37
[tool.poetry]
name = "freesif"
version = "0.2.0"
description = "Get data from Sesam Interface Files"
authors = ["Audun Gravdal Johansen <audun.gravdal.johansen@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/agrav/freesif"
packages = [{ include = "freesif" },]
include = [
"LICENSE",
"CHANGES.md"
]
keywords = ['sesam', 'structural', 'hydrodynamic']
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.10',
]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^2.2.0"
tables = "^3.8.0"
h5py = "^3.9.0"
[tool.poetry.urls]
issues = "https://github.com/agrav/freesif/issues"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"