-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (69 loc) · 2.32 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (69 loc) · 2.32 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["meson-python", "pyccel >= 2.2.3"]
build-backend = "mesonpy"
[project]
name = "psydac"
description = "Python package for isogeometric analysis (IGA)"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE", "AUTHORS"]
version = "1.0.0"
requires-python = ">= 3.10"
authors = [
{name = "PSYDAC development team", email = "psydac@googlegroups.com"}
]
maintainers = [
{name = "Yaman Güçlü", email = "yaman.guclu@gmail.com"},
{name = "Martin Campos Pinto", email = "martin.campos-pinto@ipp.mpg.de"},
]
keywords = ["FEM", "IGA", "B-spline", "NURBS"]
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
# Third-party packages from PyPi
'numpy >= 2.1, < 2.4', # >=2.1 for python 3.10, <2.4 for igakit
'scipy >= 1.12',
'sympy >= 1.5',
'matplotlib',
'pyyaml >= 5.1',
'packaging',
'pyevtk',
'termcolor',
# Our packages from PyPi
'sympde == 0.19.2',
'pyccel >= 2.2.3',
'gelato == 0.12',
# MPI for Python provides Python bindings for the
# Message Passing Interface (MPI) standard
'mpi4py >= 4',
# In addition, we depend on h5py (MPI version). Since h5py must
# be built from source, we install it with the commands
#
# export CC="mpicc"
# export HDF5_MPI="ON"
# export HDF5_DIR=<PATH-TO-HDF5-ROOT-FOLDER>
# pip install h5py --no-cache-dir --no-binary h5py
'h5py >= 3.16', # >=3.16 for setuptools 81.0
# When pyccel is run in parallel with MPI, it uses tblib to pickle
# tracebacks, which allows mpi4py to broadcast exceptions
'tblib',
]
[project.optional-dependencies]
test = [
'pytest >= 9.0', # >=9.0 for pytest.toml
'pytest-cov >= 7.0',
'pytest-mpi',
'pytest-xdist >= 3.8',
'Pillow', # Python Imaging Library (PIL) fork
]
[project.urls]
Homepage = "https://github.com/pyccel/psydac"
Documentation = "https://pyccel.github.io/psydac"
Repository = "https://github.com/pyccel/psydac.git"
Changelog = "https://github.com/pyccel/psydac/blob/devel/CHANGELOG.md"
Tracker = "https://github.com/pyccel/psydac/issues"
[project.scripts]
psydac = "psydac.cmd.main:psydac_command"
[tool.meson-python.args]
setup = ['--default-library=static']
dist = ['--include-subprojects']
install = ['--only=python-modules']