-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
36 lines (32 loc) · 940 Bytes
/
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
[build-system]
requires = ["setuptools >= 64.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sympde"
version = "0.19.1"
description = "Symbolic calculus for partial differential equations (and variational forms)"
readme = "README.rst"
requires-python = ">= 3.8, < 3.13"
license = {file = "LICENSE"}
authors = [{name = "Ahmed Ratnani", email = "ratnaniahmed@gmail.com"}]
maintainers = [
{name = "Yaman Güçlü", email = "yaman.guclu@gmail.com"},
{name = "Said Hadjout"},
]
keywords = ["math"]
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
'sympy >= 1.5, < 1.10',
'h5py',
'pytest',
'pyyaml',
'numpy',
'matplotlib'
]
[project.urls]
Repository = "https://github.com/pyccel/sympde"
[tool.setuptools.packages.find]
include = ["sympde*"]
namespaces = false
[tool.setuptools.package-data]
"*" = ["README.rst"]