-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.34 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "project-chameleon"
version = "0.1.0"
description = "A package for transforming and querying different file formats commonly found in material science research"
authors = [{name = "Peter Cauchy", email = "[email protected]"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10.15"
dependencies = [
"sphinx>=8.1.3",
"matplotlib>=3.9.0",
"numpy>=1.26.4",
"hyperspy>=2.1.0",
"py4DSTEM>=0.14.15",
"pandas>=2.2.2",
"sphinx-rtd-theme>=1.0.0",
"xylib-py>=1.6.1"
]
[project.optional-dependencies]
docs = ["sphinx-rtd-theme"]
[project.scripts]
non4dstem = "project_chameleon.non4dstem:main"
stemarray4d = "project_chameleon.stemarray4d:main"
mbeparser = "project_chameleon.mbeparser:main"
ppmsmpms = "project_chameleon.ppmsmpms:main"
rheed = "project_chameleon.rheedconverter:main"
brukerraw = "project_chameleon.brukerrawconverter:main"
brukerrawbackground = "project_chameleon.brukerrawbackground:main"
[tool.setuptools]
# Explicitly list the package to avoid issues with flat-layout
packages = ["project_chameleon"]
# Optionally, use src-layout if you prefer to restructure your package
# package-dir = {"" = "src"}
# You can also explicitly exclude other directories
# exclude = ["conda", "*.tests"]