-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 838 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 838 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
29
30
31
32
33
34
35
36
37
[project]
name = "magpy"
version = "0.0.1"
description = "Magnus based time-integration for spins and qubits under a magnetic field."
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Danny Goodacre", email = "danny.goodacre@bath.edu" },
{ name = "Pranav Singh", email = "ps2106@bath.ac.uk" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics"
]
keywords = [
"quantum", "spin", "Magnus",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {}
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.flake8]
max-line-length = 120
per-file-ignores = "*/__init__.py: F401 test_*.py: E128"