forked from PyLorentz/PyLorentz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (45 loc) · 995 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"PyLorentz",
"PyLorentz.dataset",
"PyLorentz.io",
"PyLorentz.phase",
"PyLorentz.sim",
"PyLorentz.utils",
"PyLorentz.visualize",
]
[project]
name="PyLorentz"
version='1.0.1'
description="A codebase designed for analyzing Lorentz Transmission Electron Microscopy (LTEM) data"
authors=[
{name = "Arthur R. C. McCray", email = "[email protected]"}
]
license = {file = "LICENSE"}
requires-python = ">=3.10"
dependencies=[
"numpy",
"scipy",
"numba",
"ipympl",
"jupyter",
"scikit-image",
"matplotlib",
"ncempy",
"colorcet",
"black",
"tqdm",
]
readme = 'README.md'
keywords = ["LTEM", "Lorentz", "TEM", "magnetism"]
[project.optional-dependencies]
gpu= [
"pytorch",
"cupy",
]
[project.urls]
Documentation = "https://pylorentztem.readthedocs.io"
Repository = "https://github.com/PyLorentz/PyLorentz"