-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (67 loc) · 1.66 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
authors = [{name = "Direct Electron"}]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=1.20.0",
"protobuf",
"pillow",
"matplotlib",
"scipy",
"scikit-image",
"sympy",
]
description = "API for DE Server"
version = "5.2.2beta1"
keywords = [
"EELS",
"STEM",
"TEM",
"hyperspy",
"microscopy",
"Cryo EM",
"4D STEM",
]
name = "deapi"
requires-python = ">=3.8"
[tool.setuptools.packages.find]
include = ["deapi*", "deapi.*"]
where = ["."]
[project.optional-dependencies]
tests = [
"pytest-instafail",
"pytest-mpl",
"pytest-rerunfailures",
"pytest-xdist",
"pytest>=3.6",
"setuptools_scm",
"pytest-cov",
"pytest-xprocess",
"libertem",
"hyperspy",
]
doc = [
"sphinx",
"pydata_sphinx_theme",
"sphinx-gallery",
]
[project.urls]
"Bug Reports" = "https://github.com/directelectron/deapi/issues"
Documentation = "https://directelectron.github.io/deapi/"
Homepage = "https://directelectron.com/"
Support = "https://github.com/directelectron/deapi/discussions"
Source = "https://github.com/directelectron/deapi"
[project.scripts]
pydeserver = "deapi.simulated_server.initialize_server:main"