-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (34 loc) · 949 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
37
38
39
40
41
42
43
[build-system]
build-backend = "mesonpy"
requires = [
"meson-python>=0.15.0",
"numpy",
"fpm; platform_system!='Windows'",
"ninja; platform_system!='Windows'",
"wheel"
]
[tool.black]
line-length = 79
target-version = ["py310"]
[tool.cibuildwheel]
build = ["cp310-*", "cp311-*", "cp312-*"]
skip = ["*-win32"]
[project]
name = "fexample"
version = "0.1.0"
authors = [{name = "Brandolín, Salvador Eduardo", email = "salvadorebrandolin@unc.edu.ar"}]
license = {text = "MIT License"}
readme = "README.md"
description = "Fortran with Python API example"
keywords = ["Fortran", "API",]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]
urls = {Homepage = "https://github.com/SalvadorBrandolin/fortran_meson_py"}
dependencies = [
'numpy',
]