forked from creatis-ULTIM/PyMUST
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 846 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 846 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "PyMUST"
authors = [
{name="Damien Garcia", email="damien.garcia@creatis.insa-lyon.fr"},
{name = "Gabriel Bernardino", email = "gabriel.bernardino@upf.edu"},
]
description = "Python port of the MUST toolbox for ultrasound signal processing and generation of simulated images"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib",
"numpy",
"scipy",
]
dynamic = ["license", "version"]
[project.urls]
Homepage = "https://www.biomecardio.com/MUST"
Repository = "https://github.com/creatis-ULTIM/PyMUST"
Issues = "https://github.com/creatis-ULTIM/PyMUST/issues"