-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
93 lines (84 loc) · 2.43 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["setuptools >= 61", "wheel", "setuptools_scm[toml] >= 7.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fortls"
description = "fortls - Fortran Language Server"
readme = "README.md"
authors = [{ name = "Giannis Nikiteas", email = "[email protected]" }]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Fortran",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
keywords = [
"fortran",
"language server",
"language server protocol",
"lsp",
"fortls",
]
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = [
"json5",
"packaging",
"importlib-metadata; python_version < '3.8'",
"typing-extensions; python_version < '3.8'",
]
[project.optional-dependencies]
dev = [
"pytest >= 7.2.0",
"pytest-cov >= 4.0.0",
"pytest-xdist >= 3.0.2",
"black",
"isort",
"pre-commit",
"pydantic",
]
docs = [
"sphinx >= 4.0.0",
"sphinx-argparse",
"sphinx-autodoc-typehints",
"sphinx_design",
"sphinx-copybutton",
"furo",
"myst-parser",
"sphinx-sitemap",
]
[project.urls]
homepage = "https://fortls.fortran-lang.org"
Documentation = "https://fortls.fortran-lang.org"
Changes = "https://github.com/fortran-lang/fortls/blob/master/CHANGELOG.md"
Tracker = "https://github.com/fortran-lang/fortls/issues"
"Source Code" = "https://github.com/fortran-lang/fortls"
[project.scripts]
fortls = "fortls.__init__:main"
[tool.setuptools.packages.find]
include = ["fortls*"]
[tool.setuptools.package-data]
fortls = ["parsers/internal/*.json"]
[tool.setuptools_scm]
write_to = "fortls/_version.py"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "7.2.0"
addopts = "-v --cov=fortls --cov-report=html --cov-report=xml --cov-context=test"
testpaths = ["fortls", "test"]