-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
56 lines (51 loc) · 1.31 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
[project]
name = "mf2"
dynamic = ["version"]
description = "A collection of analytical benchmark functions in multiple fidelities"
readme = "README.md"
authors = [
{name = "Sander van Rijn", email = "s.j.van.rijn@liacs.leidenuniv.nl"}
]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
requires-python = ">=3.7"
dependencies = [
"numpy"
]
[project.urls]
repository = "https://github.com/sjvrijn/mf2"
documentation = "https://github.com/sjvrijn/mf2"
github = "https://github.com/sjvrijn/mf2"
[project.optional-dependencies]
dev = [
"hypothesis[numpy]",
"matplotlib",
"pandas",
"pyprojroot",
"pytest",
"pytest-cov",
"pytest-regressions",
"sphinx",
"sphinx_rtd_theme"
]
docs = [
"matplotlib",
"pyprojroot",
"sphinx",
"sphinx_rtd_theme"
]
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["mf2"]
[tool.setuptools.dynamic]
version = {attr = "mf2.__version__"}