-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.28 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
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python>=0.15.0', 'numpy']
[project]
name = 'eastereig'
dynamic = ["version"]
description = "A library to locate exceptional points and to reconstruct eigenvalues loci"
readme = 'README.md'
license = {file = 'LICENSE'}
requires-python = '>=3.8'
authors = [
{name = "B. Nennig", email = 'benoit.nennig@isae-supmeca.fr'},
{name = "M. Ghienne", email= 'martin.ghienne@isae-supmeca.fr'}
]
dependencies = [
'numpy',
'scipy',
'sympy>=1.4',
'matplotlib',
'pypolsys',
'tqdm'
]
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/EasterEig"
[tool.pylint]
max-line-length = 115
disable = [
"C0302", # (too-many-lines)
"C0103", # (invalid-name) For fidelity to math notation!
"R0913", # (too-many-arguments)
"R0914", # (too-many-locals)
"E0611", # (no-name-in-module)
"E1101", # (no-member) Often fail with petsc4py and numpy
]