-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (42 loc) · 986 Bytes
/
pyproject.toml
File metadata and controls
44 lines (42 loc) · 986 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
38
39
40
41
42
43
44
[project]
name = "fidimag"
dynamic = ["version"]
description = "Atomistic and Finite-DIfference microMAGnetic code, based on Python, Cython and C "
readme = "README.md"
# Not fully supported:
# license-files = ["LICENSE.txt"]
# license = "BSD-2-Clause"
requires-python = ">= 3.14"
dependencies = [
'numpy',
'scipy',
'cython>=3.0.0',
'pytest',
'matplotlib',
'ipywidgets',
'pyvtk',
'ipython',
'psutil'
]
authors = [
{ name = "Weiwei Wang" },
{ name = "David Cortes Ortuno" },
{ name = "Ryan Pepper" },
{ name = "Hans Fangohr" },
{ name = "Marc-Antonio Bisotti" },
{ name = "Thomas Kluyver" },
{ name = "Mark Vousden" },
{ name = "Oliver Laslett" },
{ name = "Rebecca Carey" },
]
maintainers = [
{name = "David Cortes Ortuno", email = "david.cortes.o@gmail.com"},
{name = "Ryan Pepper"}
]
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"numpy",
"cython>=3.0.0",
]