rietx 0.0.0__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.
- rietx-0.0.0/.gitignore +13 -0
- rietx-0.0.0/LICENSE +21 -0
- rietx-0.0.0/PKG-INFO +39 -0
- rietx-0.0.0/README.md +16 -0
- rietx-0.0.0/packaging/npm/LICENSE +21 -0
- rietx-0.0.0/packaging/npm/README.md +13 -0
- rietx-0.0.0/packaging/npm/index.js +7 -0
- rietx-0.0.0/packaging/npm/package.json +30 -0
- rietx-0.0.0/pyproject.toml +43 -0
- rietx-0.0.0/src/rietx/__init__.py +9 -0
rietx-0.0.0/.gitignore
ADDED
rietx-0.0.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Yue Wu
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
rietx-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: rietx
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Rietveld refinement in Python (placeholder release)
|
|
5
|
+
Project-URL: Homepage, https://github.com/yue-here/rietx
|
|
6
|
+
Project-URL: Repository, https://github.com/yue-here/rietx
|
|
7
|
+
Project-URL: Issues, https://github.com/yue-here/rietx/issues
|
|
8
|
+
Author: Yue Wu
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: crystallography,diffraction,powder-diffraction,refinement,rietveld,xrd
|
|
12
|
+
Classifier: Development Status :: 1 - Planning
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Chemistry
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# rietx
|
|
25
|
+
|
|
26
|
+
Rietveld refinement in Python.
|
|
27
|
+
|
|
28
|
+
> **Status: placeholder.** This release reserves the name. There is no working
|
|
29
|
+
> code yet. Watch this repository for the first real release.
|
|
30
|
+
|
|
31
|
+
## Install
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install rietx
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
MIT
|
rietx-0.0.0/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# rietx
|
|
2
|
+
|
|
3
|
+
Rietveld refinement in Python.
|
|
4
|
+
|
|
5
|
+
> **Status: placeholder.** This release reserves the name. There is no working
|
|
6
|
+
> code yet. Watch this repository for the first real release.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install rietx
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## License
|
|
15
|
+
|
|
16
|
+
MIT
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Yue Wu
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# rietx
|
|
2
|
+
|
|
3
|
+
Rietveld refinement.
|
|
4
|
+
|
|
5
|
+
> **Status: placeholder.** This release reserves the name. There is no working
|
|
6
|
+
> code yet. See [github.com/yue-here/rietx](https://github.com/yue-here/rietx).
|
|
7
|
+
|
|
8
|
+
The primary implementation is a Python package, available on PyPI as
|
|
9
|
+
[`rietx`](https://pypi.org/project/rietx/).
|
|
10
|
+
|
|
11
|
+
## License
|
|
12
|
+
|
|
13
|
+
MIT
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "rietx",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Rietveld refinement (placeholder release)",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"rietveld",
|
|
7
|
+
"refinement",
|
|
8
|
+
"diffraction",
|
|
9
|
+
"crystallography",
|
|
10
|
+
"powder-diffraction",
|
|
11
|
+
"xrd"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"author": "Yue Wu",
|
|
15
|
+
"homepage": "https://github.com/yue-here/rietx",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/yue-here/rietx.git",
|
|
19
|
+
"directory": "packaging/npm"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/yue-here/rietx/issues"
|
|
23
|
+
},
|
|
24
|
+
"main": "index.js",
|
|
25
|
+
"files": [
|
|
26
|
+
"index.js",
|
|
27
|
+
"README.md",
|
|
28
|
+
"LICENSE"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "rietx"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "Rietveld refinement in Python (placeholder release)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
license-files = ["LICENSE"]
|
|
13
|
+
authors = [{ name = "Yue Wu" }]
|
|
14
|
+
keywords = [
|
|
15
|
+
"rietveld",
|
|
16
|
+
"refinement",
|
|
17
|
+
"diffraction",
|
|
18
|
+
"crystallography",
|
|
19
|
+
"powder-diffraction",
|
|
20
|
+
"xrd",
|
|
21
|
+
]
|
|
22
|
+
classifiers = [
|
|
23
|
+
"Development Status :: 1 - Planning",
|
|
24
|
+
"Intended Audience :: Science/Research",
|
|
25
|
+
"Programming Language :: Python :: 3",
|
|
26
|
+
"Programming Language :: Python :: 3.10",
|
|
27
|
+
"Programming Language :: Python :: 3.11",
|
|
28
|
+
"Programming Language :: Python :: 3.12",
|
|
29
|
+
"Programming Language :: Python :: 3.13",
|
|
30
|
+
"Topic :: Scientific/Engineering :: Chemistry",
|
|
31
|
+
"Topic :: Scientific/Engineering :: Physics",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[project.urls]
|
|
35
|
+
Homepage = "https://github.com/yue-here/rietx"
|
|
36
|
+
Repository = "https://github.com/yue-here/rietx"
|
|
37
|
+
Issues = "https://github.com/yue-here/rietx/issues"
|
|
38
|
+
|
|
39
|
+
[tool.hatch.version]
|
|
40
|
+
path = "src/rietx/__init__.py"
|
|
41
|
+
|
|
42
|
+
[tool.hatch.build.targets.wheel]
|
|
43
|
+
packages = ["src/rietx"]
|