crysta 0.0.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.
- crysta-0.0.1/.gitignore +27 -0
- crysta-0.0.1/LICENSE +29 -0
- crysta-0.0.1/PKG-INFO +7 -0
- crysta-0.0.1/pyproject.toml +27 -0
- crysta-0.0.1/src/crysta/__init__.py +10 -0
crysta-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Reference library clones — kept LOCAL only (size + mixed/study-only licences,
|
|
2
|
+
# e.g. zrietveld is registered academic software and must not be redistributed).
|
|
3
|
+
# Studied for knowledge; not committed.
|
|
4
|
+
knowledge/libraries/
|
|
5
|
+
|
|
6
|
+
# Scratch build scripts/logs from assembling the reference corpus
|
|
7
|
+
knowledge/clone*.sh
|
|
8
|
+
knowledge/clone*.log
|
|
9
|
+
|
|
10
|
+
# Paper inbox: drop raw PDFs in tmp/ — they get renamed + moved into
|
|
11
|
+
# knowledge/literature/. Inbox contents are not tracked (only this README is).
|
|
12
|
+
tmp/*
|
|
13
|
+
!tmp/README.md
|
|
14
|
+
|
|
15
|
+
# Pixi environment + build artifacts
|
|
16
|
+
/.pixi/
|
|
17
|
+
/site/
|
|
18
|
+
__pycache__/
|
|
19
|
+
*.pyc
|
|
20
|
+
|
|
21
|
+
# Python packaging artifacts (from tools/publish-reserve.sh)
|
|
22
|
+
/dist/
|
|
23
|
+
/build/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
|
|
26
|
+
# OS / editor cruft
|
|
27
|
+
.DS_Store
|
crysta-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 crysta contributors.
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
17
|
+
contributors may be used to endorse or promote products derived from
|
|
18
|
+
this software without specific prior written permission.
|
|
19
|
+
|
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
29
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
crysta-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Minimal packaging config whose only purpose right now is to reserve the
|
|
2
|
+
# 'crysta' name on PyPI. The real package (C++ core + nanobind bindings) will
|
|
3
|
+
# replace this once the implementation exists; at that point the static version
|
|
4
|
+
# below is swapped for a dynamic versioningit scheme like the EasyDiffraction
|
|
5
|
+
# repo uses.
|
|
6
|
+
|
|
7
|
+
[build-system]
|
|
8
|
+
requires = ['hatchling']
|
|
9
|
+
build-backend = 'hatchling.build'
|
|
10
|
+
|
|
11
|
+
[project]
|
|
12
|
+
name = 'crysta'
|
|
13
|
+
version = '0.0.1'
|
|
14
|
+
#description = 'High-performance crystallographic diffraction calculation and refinement engine'
|
|
15
|
+
requires-python = '>=3.12'
|
|
16
|
+
license = 'BSD-3-Clause'
|
|
17
|
+
license-files = ['LICENSE']
|
|
18
|
+
authors = [{ name = 'crysta contributors' }]
|
|
19
|
+
#urls.Homepage = 'https://github.com/enhantica/crysta'
|
|
20
|
+
|
|
21
|
+
[tool.hatch.build.targets.wheel]
|
|
22
|
+
packages = ['src/crysta']
|
|
23
|
+
|
|
24
|
+
# Without this, the sdist sweeps in the whole repo (the knowledge corpus is
|
|
25
|
+
# hundreds of MB). Keep the reservation sdist to just the package + metadata.
|
|
26
|
+
[tool.hatch.build.targets.sdist]
|
|
27
|
+
include = ['src/crysta', 'pyproject.toml', 'LICENSE']
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""crysta — high-performance crystallographic diffraction calculation and
|
|
2
|
+
refinement engine.
|
|
3
|
+
|
|
4
|
+
This is a name-reservation placeholder; the implementation (a C++ core with
|
|
5
|
+
nanobind Python bindings) is in progress. See https://github.com/enhantica/crysta.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from __future__ import annotations
|
|
9
|
+
|
|
10
|
+
__version__ = '0.0.1'
|