-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 788 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 788 Bytes
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
[project]
name = "mulfc"
version = "0.0.4"
description = "Local Field Components (or lighting fast calculator) at muon sites for the muesr package."
authors = [
{name = "Pietro Bonfa", email = "bonfus@gmail.com"},
{name = "Pietro Bonfa", email = "pietro.bonfa@unipr.it"},
]
dependencies = [
"numpy >= 1.8",
]
requires-python = ">=3.7"
readme = "README.md"
license = {text = "GPLv3"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Homepage = "https://github.com/bonfus/muLFC"
[build-system]
requires = ["setuptools>=61", "numpy>=1.8"]
build-backend = "setuptools.build_meta"