xarpes 0.1.0__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. xarpes-0.3.1/.gitignore +177 -0
  2. xarpes-0.3.1/.readthedocs.yaml +15 -0
  3. xarpes-0.3.1/LICENSE +674 -0
  4. xarpes-0.3.1/PKG-INFO +168 -0
  5. xarpes-0.3.1/README.md +145 -0
  6. xarpes-0.3.1/dev_tools/Rmd2py.py +153 -0
  7. xarpes-0.3.1/doc/Makefile +11 -0
  8. xarpes-0.3.1/doc/README.md +7 -0
  9. xarpes-0.3.1/doc/_static/xarpes_small.svg +26 -0
  10. xarpes-0.3.1/doc/conf.py +43 -0
  11. xarpes-0.3.1/doc/index.rst +17 -0
  12. xarpes-0.3.1/doc/modules/distributions.rst +5 -0
  13. xarpes-0.3.1/doc/modules/functions.rst +5 -0
  14. xarpes-0.3.1/doc/modules/plotting.rst +5 -0
  15. xarpes-0.3.1/doc/modules/spectral.rst +5 -0
  16. xarpes-0.3.1/doc/requirements.txt +4 -0
  17. xarpes-0.3.1/examples/graphene/data_sets/graphene_152.ibw +0 -0
  18. xarpes-0.3.1/examples/graphene/graphene.Rmd +416 -0
  19. xarpes-0.3.1/examples/graphene/graphene.py +331 -0
  20. xarpes-0.3.1/examples/srtio3/data_sets/STO_2_0010STO_2_.ibw +0 -0
  21. xarpes-0.3.1/examples/srtio3/srtio3.Rmd +592 -0
  22. xarpes-0.3.1/examples/srtio3/srtio3.py +484 -0
  23. xarpes-0.3.1/logo/Makefile +33 -0
  24. xarpes-0.3.1/logo/exubi.svg +23 -0
  25. xarpes-0.3.1/logo/xarpes.svg +30 -0
  26. {xarpes-0.1.0 → xarpes-0.3.1}/pyproject.toml +10 -3
  27. xarpes-0.3.1/xarpes/__init__.py +6 -0
  28. xarpes-0.3.1/xarpes/constants.py +12 -0
  29. xarpes-0.3.1/xarpes/distributions.py +766 -0
  30. xarpes-0.3.1/xarpes/functions.py +337 -0
  31. {xarpes-0.1.0 → xarpes-0.3.1}/xarpes/plotting.py +74 -43
  32. xarpes-0.3.1/xarpes/spectral.py +2067 -0
  33. xarpes-0.1.0/LICENSE +0 -339
  34. xarpes-0.1.0/PKG-INFO +0 -113
  35. xarpes-0.1.0/README.md +0 -95
  36. xarpes-0.1.0/xarpes/__init__.py +0 -8
  37. xarpes-0.1.0/xarpes/band_map.py +0 -168
  38. xarpes-0.1.0/xarpes/distributions.py +0 -104
  39. xarpes-0.1.0/xarpes/functions.py +0 -38
@@ -0,0 +1,177 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ doc/_build/
73
+ doc/doctrees/
74
+ doc/html/
75
+
76
+ # PyBuilder
77
+ .pybuilder/
78
+ target/
79
+
80
+ # Jupyter Notebook
81
+ .ipynb_checkpoints
82
+ *.ipynb
83
+
84
+ # IPython
85
+ profile_default/
86
+ ipython_config.py
87
+
88
+ # pyenv
89
+ # For a library or package, you might want to ignore these files since the code is
90
+ # intended to run in multiple environments; otherwise, check them in:
91
+ # .python-version
92
+
93
+ # pipenv
94
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
95
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
96
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
97
+ # install all needed dependencies.
98
+ #Pipfile.lock
99
+
100
+ # poetry
101
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
102
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
103
+ # commonly ignored for libraries.
104
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
105
+ #poetry.lock
106
+
107
+ # pdm
108
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
109
+ #pdm.lock
110
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
111
+ # in version control.
112
+ # https://pdm.fming.dev/#use-with-ide
113
+ .pdm.toml
114
+
115
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
116
+ __pypackages__/
117
+
118
+ # Celery stuff
119
+ celerybeat-schedule
120
+ celerybeat.pid
121
+
122
+ # SageMath parsed files
123
+ *.sage.py
124
+
125
+ # Environments
126
+ .env
127
+ .venv
128
+ env/
129
+ venv/
130
+ ENV/
131
+ env.bak/
132
+ venv.bak/
133
+
134
+ # Spyder project settings
135
+ .spyderproject
136
+ .spyproject
137
+
138
+ # Rope project settings
139
+ .ropeproject
140
+
141
+ # mkdocs documentation
142
+ /site
143
+
144
+ # mypy
145
+ .mypy_cache/
146
+ .dmypy.json
147
+ dmypy.json
148
+
149
+ # Pyre type checker
150
+ .pyre/
151
+
152
+ # pytype static type analyzer
153
+ .pytype/
154
+
155
+ # Cython debug symbols
156
+ cython_debug/
157
+
158
+ # PyCharm
159
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
160
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
161
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
162
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
163
+ #.idea/
164
+
165
+
166
+ # --- Ignore all PNG and specific SVG figures globally ---
167
+ *.png
168
+ *_small.svg
169
+
170
+ # --- But DO NOT ignore Sphinx static assets (used by docs) ---
171
+ !doc/_static/**
172
+
173
+ # VS Code
174
+ .vscode/
175
+
176
+ # Ignore Rmd2py.py script in examples folder
177
+ examples/Rmd2py.py
@@ -0,0 +1,15 @@
1
+ version: 2
2
+
3
+ sphinx:
4
+ configuration: doc/conf.py
5
+
6
+ build:
7
+ os: ubuntu-22.04
8
+ tools:
9
+ python: "3.11"
10
+
11
+ python:
12
+ install:
13
+ - method: pip
14
+ path: .
15
+ - requirements: doc/requirements.txt