forked from pearu/f2py
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into 313_permit_intrinsi…
…c_shadowing
- Loading branch information
Showing
6 changed files
with
74 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,46 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools >= 42", | ||
"setuptools >= 61", | ||
"setuptools_scm[toml] >= 6.2", | ||
"setuptools_scm_git_archive", | ||
"wheel >= 0.29.0", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "fparser" | ||
authors = [{name = "Pearu Peterson"}, | ||
{name = "Rupert Ford"}, | ||
{name = "Andrew Porter", email = "[email protected]"}] | ||
license = {text = "BSD-3-Clause"} | ||
description = "Python implementation of a Fortran parser" | ||
readme = "README.md" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"Natural Language :: English", | ||
"Programming Language :: Fortran", | ||
"Programming Language :: Python", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Software Development", | ||
"Topic :: Utilities", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS", | ||
] | ||
keywords = ["fortran", "parser"] | ||
dynamic = ["version"] | ||
requires-python = ">=3.6" | ||
dependencies = ["setuptools_scm"] | ||
|
||
[project.optional-dependencies] | ||
doc = ["sphinx", "sphinxcontrib.bibtex", "autoapi", "sphinx-autoapi", "sphinx_rtd_theme"] | ||
tests = ["pytest >= 3.3.0"] | ||
|
||
[project.scripts] | ||
fparser2 = "fparser.scripts.fparser2:main" | ||
|
||
[tool.setuptools_scm] | ||
write_to = "src/fparser/_version.py" |