-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
89 lines (82 loc) · 2.23 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
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=8.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "ManifoldEM"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Ali Dashti"},
{name = "Joachim Frank"},
{name = "Hstau Liao"},
{name = "Suvrajit Maji"},
{name = "Ghoncheh Mashayekhi"},
{name = "Abbas Ourmazd"},
{name = "Peter Schwander"},
{name = "Evan Seitz", email = "[email protected]"},
{name = "Robert Blackwell", email = "[email protected]"},
]
maintainers = [
{name = "Robert Blackwell", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: User Interfaces",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
]
dependencies = [
"fabric",
"nptyping",
"numpy",
"numba",
"mayavi",
"PyQt5",
"psutil",
"matplotlib",
"scikit-image",
"scikit-learn",
"scipy",
"pandas",
"mrcfile",
"opencv-python-headless",
"opencv-contrib-python",
"h5py",
"imageio",
"toml",
"tqdm",
"fasthog",
]
[project.scripts]
manifold-cli = "ManifoldEM.interfaces.cli:main"
manifold-gui = "ManifoldEM.interfaces.gui:main"
[project.urls]
Repository = "https://github.com/flatironinstitute/ManifoldEM.git"
# Must declare to have version automation, even if empty
[tool.setuptools_scm]
[tool.setuptools.packages.find]
include = ["ManifoldEM*"]
[tool.yapf]
based_on_style = "pep8"
column_limit = 119
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]