-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (39 loc) · 1.1 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
[build-system]
requires = ["maturin >= 1.0, < 2.0"]
build-backend = "maturin"
[project]
name = "fortitude-lint"
version = "0.5.1"
description = "A Fortran linter, written in Rust and installable with Python"
readme = "README.md"
authors = [
{name = "Liam Pattinson", email = "[email protected]"},
{name = "Peter Hill", email = "[email protected]"},
]
licence = {file = "LICENSE"}
keywords = ["Fortran", "linter"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Rust",
"Topic :: Software Development :: Quality Assurance",
]
requires-python = ">=3.10"
dependencies = []
[project.urls]
Repository = "https://github.com/PlasmaFAIR/fortitude"
[project.optional-dependencies]
lint = [
"ruff",
]
[tool.maturin]
bindings = "bin"
module-name = "fortitude"
python-source = "python"
python-packages = ["fortitude"]
manifest-path = "fortitude/Cargo.toml"
strip = true