-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (27 loc) · 996 Bytes
/
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
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fortnet-python"
version = "0.4"
authors = [{name = "T. W. van der Heide"},]
dependencies = ["numpy", "h5py", "ase"]
requires-python = ">=3.10"
description = "Python Tools for the Fortnet Software Package"
readme = {file = "README.rst", content-type = "text/x-rst"}
license = {text = "BSD"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://github.com/vanderhe/fortnet-python"
Documentation = "https://fortnet.readthedocs.io/en/latest/fortformat/index.html"
Repository = "https://github.com/vanderhe/fortnet-python.git"
Issues = "https://github.com/vanderhe/fortnet-python/issues"
[project.optional-dependencies]
test = ["pytest",]