-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
83 lines (76 loc) · 2.16 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pycoilgen"
authors = [
{name = "Kevin Meyer", email = "kevin@kmz.co.za"},
{name = "Philipp Amrein", email="none@noreply.com"},
]
readme = "README.md"
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.6"
keywords = [
"MRI",
"Magnetic Resonance Imaging",
"NMR",
"Nuclear Resonance Imaging",
"Target Field",
"Gradient Field",
"Physics",
"Coil",
]
dependencies = [
"numpy==1.*",
"scipy==1.*",
"trimesh==3.*",
"sympy==1.*",
"pillow<=9.5",
"matplotlib==3.*",
]
dynamic = ["version", "description"]
[project.urls]
Home = "https://github.com/kev-m/pyCoilGen"
Documentation = "https://pycoilgen.readthedocs.io/"
Source = "https://github.com/kev-m/pyCoilGen"
"Code of Conduct" = "https://github.com/kev-m/pyCoilGen/blob/release/CODE_OF_CONDUCT.md"
"Bug tracker" = "https://github.com/kev-m/pyCoilGen/issues"
Changelog = "https://github.com/kev-m/pyCoilGen/blob/release/CHANGELOG.md"
Contributing = "https://github.com/kev-m/pyCoilGen/blob/release/CONTRIBUTING.md"
[project.scripts]
pyCoilGen = "pyCoilGen:__main__.main"
[tool.flit.module]
name = "pyCoilGen"
[tool.flit.sdist]
include = [
]
exclude = [
"docs",
"examples",
"utilities",
"scratchpad",
"tests",
"data",
"pyCoilGen/pyCoilGen_develop.py",
]
[tool.autopep8]
max_line_length = 120
aggressive = 0