-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathsetup.cfg
69 lines (64 loc) · 1.69 KB
/
setup.cfg
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
[metadata]
name = fortls
url = https://github.com/gnikit/fortls
author = Giannis Nikiteas
author_email = giannis.nikiteas@gmail.com
description = fortls - Fortran Language Server
long_description = file: README.md
long_description_content_type = text/markdown
license = 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 :: Fortran
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
keywords =
fortran
language server
language server protocol
lsp
fortls
project_urls =
Documentation = https://gnikit.github.io/fortls
Repository = https://github.com/gnikit/fortls
Tracker = https://github.com/gnikit/fortls/issues
[options]
packages = find:
python_requires = >= 3.7
install_requires =
packaging
importlib-metadata; python_version < "3.8"
typing-extensions; python_version < "3.8"
[options.package_data]
fortls = *.json
[options.entry_points]
console_scripts =
fortls = fortls.__init__:main
[options.extras_require]
dev =
pytest >= 5.4.3
pytest-cov >= 2.12.1
black
isort
pre-commit
docs =
sphinx >= 4.0.0
sphinx_rtd_theme
sphinx-argparse
sphinx-autodoc-typehints
myst-parser
[flake8]
max-line-length = 88
extend-ignore = E203, E722