-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 943 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 943 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
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python>=0.15.0', 'cython', 'numpy']
[project]
name = 'pypolsys'
dynamic = ["version"]
description = "A python wrapper to `POLSYS_PLP` fortran90 package from Layne T. Watson, Steven M. Wise, Andrew J. Sommese, August, 1998."
readme = 'README.md'
license = {file = 'LICENSE'}
requires-python = '>=3.8'
authors = [
{name = "B. Nennig", email = 'benoit.nennig@isae-supmeca.fr'},
]
dependencies = [
"numpy",
"scipy",
"sympy",
]
classifiers = [
# How mature is this project?
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Topic :: Scientific/Engineering",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
homepage = "https://github.com/nennigb/pypolsys"