forked from pearu/f2py
-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
46 lines (42 loc) · 1.3 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
[build-system]
requires = [
"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"