-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 1.17 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[tool.black]
line-length = 79
target-version = ["py310"]
[tool.pytest.ini_options]
pythonpath = [
"."
]
[project]
name = "fordoctest"
version = "0.0.1a"
authors = [ {name = "Benelli, Federico Ezequiel", email = "[email protected]"}]
license = {text = "The MPL License"}
readme = "README.md"
description = "Assure that your Fortran project is correctly documented."
keywords = ["Fortran", "Testing", "Documentation"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MPL License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Fortran :: 77",
"Programming Language :: Fortran :: 95",
"Programming Language :: Fortran :: 2003",
"Programming Language :: Fortran :: 2008",
"Programming Language :: Fortran :: 2018",
"Topic :: Scientific/Engineering",
]
urls = {Homepage = "https://github.com/fedebenelli/fordoctest"}
dependencies = [
'ford >= 7.0.5'
]
[project.scripts]
fordoctest = "fordoctest.command_line:main"