-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (63 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
68 lines (63 loc) · 1.67 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
[project]
name = "gemseo-mma"
authors = [
{name = "Simone Coniglio", email = "contact@gemseo.org"}
]
description = "A gemseo wrapper of Python version of Method of Moving Asymptothes in the implementation of Arjen Deetman."
readme = "README.md"
license = "GPL-3.0"
license-files = ["LICENSE.txt"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["version"]
requires-python = ">=3.10, <3.14"
dependencies = [
"gemseo[all] >=6.3,<7",
"numpy",
"scipy",
]
[dependency-groups]
dev = [
"covdefaults >=2",
"pytest >=7,<9",
"pytest-cov >=5",
"pytest-xdist >=3",
]
doc = [
"black",
"griffe-fieldz",
"griffe-inherited-docstrings",
"markdown-exec[ansi]",
"mike",
"mkdocs-bibtex",
"mkdocs-gallery",
"mkdocs-gen-files",
"mkdocs-include-markdown-plugin",
"mkdocs-literate-nav",
"mkdocs-material",
"mkdocs-section-index",
"mkdocstrings[python]",
]
[project.urls]
Homepage = "https://gemseo.org"
Source = "https://gitlab.com/gemseo/dev/gemseo-mma"
Issues = "https://gitlab.com/gemseo/dev/gemseo-mma/-/issues"
[project.entry-points]
gemseo_plugins = { gemseo-mma = "gemseo_mma" }
[build-system]
requires = [
"setuptools",
"setuptools_scm[toml]",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]