forked from ubermag/ubermag
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
96 lines (82 loc) · 2.28 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ubermag"
version = "2023.11"
description = "Meta package for Ubermag project."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Marijan Beg"},
{name = "Martin Lang"},
{name = "Samuel Holt"},
{name = "Swapneel Amit Pathak"},
{name = "Ryan A. Pepper"},
{name = "Thomas Kluyver"},
{name = "Jeroen Mulkers"},
{name = "Jonathan Leliaert"},
{name = "Hans Fangohr"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization"
]
dependencies = [
"ubermagutil==0.63.2",
"discretisedfield==0.90.1",
"ubermagtable==0.61.3",
"micromagneticmodel==0.63.2",
"micromagneticdata==0.65.2",
"micromagnetictests==0.63.1",
"mumax3c==0.2.0",
"oommfc==0.64.1",
"mag2exp==0.62.2",
"jupyterlab>=3.0"
]
[project.optional-dependencies]
dev = [
"build",
"h5glance",
"invoke",
"nbval",
"pre-commit",
"pytest-cov",
"twine"
]
[project.urls]
homepage = "https://ubermag.github.io"
documentation = "https://ubermag.github.io/documentation/ubermag"
repository = "https://github.com/ubermag/ubermag"
[tool.black]
experimental-string-processing = true
[tool.coverage.run]
omit = ["ubermag/tests/*"]
[tool.isort]
profile = "black"
skip_gitignore = true # ignores files listed in .gitignore
[tool.setuptools.packages.find]
include = ["ubermag*"]
# to define additional information we use a custom table
# see: https://www.python.org/dev/peps/pep-0518/#tool-table
[tool.ubermag]
doi = "10.5281/zenodo.3539495"
copyright_holder = "Marijan Beg and Hans Fangohr"
contributors = [
]
about = """
- Meta package for Ubermag project,
- Logging control in Ubermag packages.
"""