-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
47 lines (39 loc) · 1.4 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"]
build-backend = "setuptools.build_meta"
[project]
name = "Forthon"
dynamic = ["version"]
license = {file = "Forthon/License.txt"}
dependencies = ["numpy"]
authors = [ {name = "David P. Grote", email = "grote1@llnl.gov"}, ]
description = "Fortran95 wrapper/code development package"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: Free To Use But Restricted",
"Operating System :: OS Independent",
"Topic :: Software Development :: Build Tools",
"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",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["Forthon"]
[tool.setuptools.package-data]
Forthon = ["License.txt","Forthon.h","Forthon.c", "npy_2_compat.h"]
[project.scripts]
Forthon3 = "Forthon.Forthon_builder:call_setup"
[tool.setuptools.dynamic]
version = {attr = "Forthon.version.version"}
[project.urls]
Repository = "https://github.com/dpgrote/Forthon.git"