Skip to content

Commit ec7975b

Browse files
committed
build: move project setup to pyproject.toml
There is a subtle difference with the Home-Page field in setuptools not being set via pypoject.toml. The version of setuptools has been bumped to 61+ to at least map the url "homepage" to Home-Page in PyPi. See relevant Issue on pypa: pypa/packaging-problems#606
1 parent da01db1 commit ec7975b

File tree

2 files changed

+80
-81
lines changed

2 files changed

+80
-81
lines changed

pyproject.toml

+80-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,86 @@
11
[build-system]
2-
requires = [
3-
"setuptools >= 45",
4-
"wheel",
5-
"setuptools_scm[toml] >= 7.0",
6-
]
2+
requires = ["setuptools >= 61", "wheel", "setuptools_scm[toml] >= 7.0"]
73
build-backend = "setuptools.build_meta"
84

5+
[project]
6+
name = "fortls"
7+
description = "fortls - Fortran Language Server"
8+
readme = "README.md"
9+
authors = [{ name = "Giannis Nikiteas", email = "[email protected]" }]
10+
license = { text = "MIT" }
11+
classifiers = [
12+
"Development Status :: 4 - Beta",
13+
"Intended Audience :: Developers",
14+
"Intended Audience :: Science/Research",
15+
"License :: OSI Approved :: MIT License",
16+
"Natural Language :: English",
17+
"Programming Language :: Python",
18+
"Programming Language :: Python :: 3",
19+
"Programming Language :: Python :: 3.7",
20+
"Programming Language :: Python :: 3.8",
21+
"Programming Language :: Python :: 3.9",
22+
"Programming Language :: Python :: 3.10",
23+
"Programming Language :: Python :: 3.11",
24+
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Fortran",
26+
"Operating System :: Microsoft :: Windows",
27+
"Operating System :: POSIX",
28+
"Operating System :: Unix",
29+
"Operating System :: MacOS",
30+
]
31+
keywords = [
32+
"fortran",
33+
"language server",
34+
"language server protocol",
35+
"lsp",
36+
"fortls",
37+
]
38+
dynamic = ["version"]
39+
requires-python = ">=3.7"
40+
dependencies = [
41+
"json5",
42+
"packaging",
43+
"importlib-metadata; python_version < '3.8'",
44+
"typing-extensions; python_version < '3.8'",
45+
]
46+
47+
[project.optional-dependencies]
48+
dev = [
49+
"pytest >= 7.2.0",
50+
"pytest-cov >= 4.0.0",
51+
"pytest-xdist >= 3.0.2",
52+
"black",
53+
"isort",
54+
"pre-commit",
55+
"pydantic",
56+
]
57+
docs = [
58+
"sphinx >= 4.0.0",
59+
"sphinx-argparse",
60+
"sphinx-autodoc-typehints",
61+
"sphinx_design",
62+
"sphinx-copybutton",
63+
"furo",
64+
"myst-parser",
65+
"sphinx-sitemap",
66+
]
67+
68+
[project.urls]
69+
homepage = "https://fortls.fortran-lang.org"
70+
Documentation = "https://fortls.fortran-lang.org"
71+
Changes = "https://github.com/fortran-lang/fortls/blob/master/CHANGELOG.md"
72+
Tracker = "https://github.com/fortran-lang/fortls/issues"
73+
"Source Code" = "https://github.com/fortran-lang/fortls"
74+
75+
[project.scripts]
76+
fortls = "fortls.__init__:main"
77+
78+
[tool.setuptools.packages.find]
79+
include = ["fortls"]
80+
81+
[tool.setuptools.package-data]
82+
fortls = ["parsers/internal/*.json"]
83+
984
[tool.setuptools_scm]
1085
write_to = "fortls/_version.py"
1186

setup.cfg

-76
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,3 @@
1-
[metadata]
2-
name = fortls
3-
url = https://fortls.fortran-lang.org
4-
author = Giannis Nikiteas
5-
author_email = [email protected]
6-
description = fortls - Fortran Language Server
7-
long_description = file: README.md
8-
long_description_content_type = text/markdown
9-
license = MIT
10-
classifiers =
11-
Development Status :: 4 - Beta
12-
Intended Audience :: Developers
13-
Intended Audience :: Science/Research
14-
License :: OSI Approved :: MIT License
15-
Natural Language :: English
16-
Programming Language :: Python
17-
Programming Language :: Python :: 3
18-
Programming Language :: Python :: 3.7
19-
Programming Language :: Python :: 3.8
20-
Programming Language :: Python :: 3.9
21-
Programming Language :: Python :: 3.10
22-
Programming Language :: Python :: 3.11
23-
Programming Language :: Python :: 3.12
24-
Programming Language :: Fortran
25-
Operating System :: Microsoft :: Windows
26-
Operating System :: POSIX
27-
Operating System :: Unix
28-
Operating System :: MacOS
29-
keywords =
30-
fortran
31-
language server
32-
language server protocol
33-
lsp
34-
fortls
35-
project_urls =
36-
# Donate = https://github.com/sponsors/gnikit
37-
Documentation = https://fortls.fortran-lang.org
38-
Changes = https://github.com/fortran-lang/fortls/blob/master/CHANGELOG.md
39-
Tracker = https://github.com/fortran-lang/fortls/issues
40-
Source Code = https://github.com/fortran-lang/fortls
41-
42-
[options]
43-
packages = find:
44-
python_requires = >= 3.7
45-
install_requires =
46-
json5
47-
packaging
48-
importlib-metadata; python_version < "3.8"
49-
typing-extensions; python_version < "3.8"
50-
51-
[options.package_data]
52-
fortls = parsers/internal/*.json
53-
54-
[options.entry_points]
55-
console_scripts =
56-
fortls = fortls.__init__:main
57-
58-
[options.extras_require]
59-
dev =
60-
pytest >= 7.2.0
61-
pytest-cov >= 4.0.0
62-
pytest-xdist >= 3.0.2
63-
black
64-
isort
65-
pre-commit
66-
pydantic
67-
docs =
68-
sphinx >= 4.0.0
69-
sphinx-argparse
70-
sphinx-autodoc-typehints
71-
sphinx_design
72-
sphinx-copybutton
73-
furo
74-
myst-parser
75-
sphinx-sitemap
76-
771
[flake8]
782
max-line-length = 88
793
extend-ignore = E203, E722

0 commit comments

Comments
 (0)