-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
70 lines (60 loc) · 1.9 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
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools >= 64.0", "wheel", "numpy", "pyccel >= 1.9.2"]
build-backend = "setuptools.build_meta"
[project]
name = "psydac"
version = "0.1"
description = "Python package for isogeometric analysis (IGA)"
readme = "README.md"
requires-python = ">= 3.9, < 3.13"
license = {file = "LICENSE"}
authors = [
{name = "Psydac development team", email = "[email protected]"}
]
maintainers = [
{name = "Yaman Güçlü" , email = "[email protected]"},
{name = "Ahmed Ratnani", email = "[email protected]"},
{name = "Said Hadjout"},
]
keywords = ["FEM", "IGA", "B-spline", "NURBS"]
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
# Third-party packages from PyPi
'numpy >= 1.16',
'scipy >= 1.12',
'sympy >= 1.5',
'matplotlib',
'pytest >= 4.5',
'pytest-xdist >= 1.16',
'pyyaml >= 5.1',
'packaging',
'pyevtk',
# Our packages from PyPi
'sympde == 0.19.0',
'pyccel >= 1.11.2',
'gelato == 0.12',
# In addition, we depend on mpi4py and h5py (MPI version).
# Since h5py must be built from source, we run the commands
#
# python3 -m pip install requirements.txt
# python3 -m pip install .
'mpi4py',
'h5py',
# When pyccel is run in parallel with MPI, it uses tblib to pickle
# tracebacks, which allows mpi4py to broadcast exceptions
'tblib',
# IGAKIT - not on PyPI
'igakit @ https://github.com/dalcinl/igakit/archive/refs/heads/master.zip'
]
[project.urls]
Homepage = "https://github.com/pyccel/psydac"
Documentation = "https://pyccel.github.io/psydac"
Repository = "https://github.com/pyccel/psydac.git"
[project.scripts]
psydac-mesh = "psydac.cmd.mesh:main"
[tool.setuptools.packages.find]
include = ["psydac*"]
exclude = ["*__psydac__*"]
namespaces = false
[tool.setuptools.package-data]
"*" = ["*.txt"]