-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (23 loc) · 776 Bytes
/
pyproject.toml
File metadata and controls
25 lines (23 loc) · 776 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "ffmt"
version = "0.3.5"
description = "A fast, configurable Fortran formatter with Fypp, Doxygen, and OpenACC/OpenMP support"
license = { text = "MIT" }
requires-python = ">=3.8"
readme = "README.md"
keywords = ["fortran", "formatter", "linter", "code-quality"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Fortran",
"Programming Language :: Rust",
"Topic :: Software Development :: Quality Assurance",
]
[tool.maturin]
# Binary-only distribution — no Python bindings, just the ffmt CLI
bindings = "bin"