forked from niermann/temscript
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml.future
More file actions
51 lines (47 loc) · 1.73 KB
/
pyproject.toml.future
File metadata and controls
51 lines (47 loc) · 1.73 KB
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
[build-system]
requires = ["setuptools>=40.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pytemscript"
version = "3.0"
authors = [
{name = "Grigory Sharov", email = "gsharov@mrc-lmb.cam.ac.uk"},
{name = "Tore Niermann", email = "tore.niermann@tu-berlin.de"}
]
description = "TEM Scripting adapter for FEI/TFS microscopes"
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.8"
keywords = ["TEM python"]
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'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',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
]
license = {file = "LICENSE"}
dependencies = [
"comtypes>=1.2.1",
"mrcfile",
"numpy",
"pillow"
]
[project.optional-dependencies]
dev = ["matplotlib", "mypy"]
utapi = ["grpcio", "grpcio-tools", "protobuf"]
[project.urls]
Homepage = "https://github.com/azazellochg/pytemscript"
Issues = "https://github.com/azazellochg/pytemscript/issues"
[project.scripts]
pytemscript-server = "pytemscript.server.run:main"
pytemscript-test = "tests.test_microscope:main"
pytemscript-test-acquisition = "tests.test_acquisition:main"
pytemscript-test-events = "tests.test_events:main"