-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
56 lines (49 loc) · 1.46 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
[build-system]
requires = [
"setuptools >= 65",
"setuptools_scm[toml] >= 6.2",
"setuptools_scm_git_archive",
"wheel >= 0.29.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "fortdepend"
description = "Automatically generate Fortran dependencies"
readme = "README.md"
authors = [{name = "Peter Hill", email = "[email protected]"}]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Fortran",
]
keywords = ["build", "dependencies", "fortran"]
requires-python = ">=3.8"
dependencies = [
"colorama >= 0.3.9",
"pcpp >= 1.1.0",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = ["pytest >= 3.3.0"]
docs = [
"sphinx >= 1.4",
"sphinx-argparse >= 0.2.3",
]
[project.scripts]
fortdepend = "fortdepend.__main__:main"
[project.urls]
Source = "https://github.com/ZedThree/fort_depend.py"
Tracker = "https://github.com/ZedThree/fort_depend.py/issues"
[tool.pytest.ini_options]
norecursedirs = ["bin", "include", "lib", "lib64", "*egg-info"]
[tool.setuptools_scm]
git_describe_command = "git describe --dirty --tags --long --match v* --first-parent"
[tool.ruff]
line-length = 88
ignore = ["E501"]