-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
90 lines (82 loc) · 2.36 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
90
[build-system]
requires = ["setuptools>=64.0.1", "setuptools-scm[toml]>=6.2"]
backend-path = ["pynxtools"]
build-backend = "_build_wrapper"
[project]
name = "pynxtools"
dynamic = ["version"]
authors = [
{ name = "The NOMAD Authors" },
]
description = "Extend NeXus for experiments and characterization in Materials Science and Materials Engineering and serve as a NOMAD parser implementation for NeXus."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8,!=3.12"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"click>=7.1.2",
"h5py>=3.6.0",
"xarray>=0.20.2",
"PyYAML>=6.0",
"numpy>=1.21.2",
"pandas>=1.3.2",
"odfpy>=1.4.1",
"ase>=3.19.0",
"flatdict",
"hyperspy",
"rosettasciio",
"xraydb",
"ifes_apt_tc_data_modeling>=0.1",
"gitpython>=3.1.24",
"pytz>=2021.1",
"kikuchipy>=0.9.0",
"pyxem>=0.15.1",
"xmltodict",
"nionswift>=0.16.8",
"tzlocal<=4.3",
"scipy>=1.7.1",
"lark>=1.1.5",
"requests",
"requests_cache",
"mergedeep"
]
[options]
install_requires = "importlib-metadata ; python_version < '3.10'"
[project.urls]
"Homepage" = "https://github.com/FAIRmat-NFDI/pynxtools"
"Bug Tracker" = "https://github.com/FAIRmat-NFDI/pynxtools/issues"
[project.optional-dependencies]
dev = [
"mypy",
"pylint",
"pycodestyle",
"pytest",
"pytest-timeout",
"pytest-cov",
"structlog",
"types-pyyaml",
"types-pytz",
"types-requests",
"pip-tools",
]
[project.scripts]
read_nexus = "pynxtools.nexus.nexus:main"
dataconverter = "pynxtools.dataconverter.convert:convert_cli"
generate_eln = "pynxtools.eln_mapper.eln_mapper:get_eln"
[tool.setuptools.package-data]
pynxtools = ["definitions/**/*.xml", "definitions/**/*.xsd"]
"pynxtools.dataconverter.readers.xps" = ["*.json"]
"pynxtools.dataconverter.readers.hall" = ["enum_map.json"]
"pynxtools.dataconverter.readers.rii_database.formula_parser" = ["dispersion_function_grammar.lark"]
[tool.setuptools.packages.find]
exclude = ["pynxtools/definitions*"]
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
local_scheme = "node-and-date"