LSSlab 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.
lsslab-0.0.1/LICENSE ADDED
@@ -0,0 +1,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2026, Siyi Zhao
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 contributors
17
+ may be used to endorse or promote products derived from this software
18
+ 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.
lsslab-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: LSSlab
3
+ Version: 0.0.1
4
+ Summary: Cosmological Large-Scale Structure Analysis Lab.
5
+ Author-email: Siyi Zhao <siyizhao17@gmail.com>
6
+ License: BSD 3-Clause License
7
+ Classifier: License :: OSI Approved :: BSD License
8
+ Classifier: Operating System :: OS Independent
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+
13
+ # LSSlab
14
+
15
+ Lightweight scaffolding for the LSSlab Python package.
16
+
17
+ ## Installation (local dev)
18
+
19
+ ```
20
+ pip install -e .
21
+ ```
22
+
23
+ ### Recommended: isolated env
24
+
25
+ ```
26
+ python -m venv .venv
27
+ source .venv/bin/activate
28
+ pip install --upgrade pip
29
+ pip install -e .
30
+ ```
31
+
32
+ ## Usage
33
+
34
+ ```python
35
+ import lsslab
36
+
37
+ print(lsslab.__version__)
38
+ ```
39
+
40
+ ## Development
41
+
42
+ - Tooling (one-time): `pip install --upgrade build twine`
43
+ - Build: `python -m build`
44
+ - Check artifacts: `python -m twine check dist/*`
45
+
46
+ ## License
47
+
48
+ BSD-3-Clause (see LICENSE)
lsslab-0.0.1/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # LSSlab
2
+
3
+ Lightweight scaffolding for the LSSlab Python package.
4
+
5
+ ## Installation (local dev)
6
+
7
+ ```
8
+ pip install -e .
9
+ ```
10
+
11
+ ### Recommended: isolated env
12
+
13
+ ```
14
+ python -m venv .venv
15
+ source .venv/bin/activate
16
+ pip install --upgrade pip
17
+ pip install -e .
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```python
23
+ import lsslab
24
+
25
+ print(lsslab.__version__)
26
+ ```
27
+
28
+ ## Development
29
+
30
+ - Tooling (one-time): `pip install --upgrade build twine`
31
+ - Build: `python -m build`
32
+ - Check artifacts: `python -m twine check dist/*`
33
+
34
+ ## License
35
+
36
+ BSD-3-Clause (see LICENSE)
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "LSSlab" # display name; normalized to lsslab in index
7
+ version = "0.0.1"
8
+ description = "Cosmological Large-Scale Structure Analysis Lab."
9
+ readme = "README.md"
10
+ license = { text = "BSD 3-Clause License" }
11
+ requires-python = ">=3.8"
12
+ authors = [{ name = "Siyi Zhao", email = "siyizhao17@gmail.com" }]
13
+ classifiers = [
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: BSD License",
16
+ "Operating System :: OS Independent",
17
+ ]
18
+ dependencies = [] # add runtime deps here
19
+
20
+ [tool.hatch.build.targets.wheel]
21
+ packages = ["src/lsslab"]
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"