rainbowkit 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.
- rainbowkit-0.0.1/LICENSE +21 -0
- rainbowkit-0.0.1/PKG-INFO +29 -0
- rainbowkit-0.0.1/README.md +17 -0
- rainbowkit-0.0.1/pyproject.toml +19 -0
- rainbowkit-0.0.1/rainbowkit/__init__.py +0 -0
- rainbowkit-0.0.1/rainbowkit/linelist.py +1216 -0
- rainbowkit-0.0.1/rainbowkit/rainbowkit.py +238 -0
- rainbowkit-0.0.1/rainbowkit.egg-info/PKG-INFO +29 -0
- rainbowkit-0.0.1/rainbowkit.egg-info/SOURCES.txt +10 -0
- rainbowkit-0.0.1/rainbowkit.egg-info/dependency_links.txt +1 -0
- rainbowkit-0.0.1/rainbowkit.egg-info/top_level.txt +1 -0
- rainbowkit-0.0.1/setup.cfg +4 -0
rainbowkit-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Sourav Das
|
|
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,29 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: rainbowkit
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Tools to work with spectra
|
|
5
|
+
Author-email: Sourav Das <souravdas.sd20@gmail.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
|
|
13
|
+
# RainbowKit
|
|
14
|
+
|
|
15
|
+
RainbowKit is a Python toolkit for spectral analysis. It allows you to create spectrum objects and execute various methods, such as plotting and marking lines.
|
|
16
|
+
|
|
17
|
+
## Features
|
|
18
|
+
|
|
19
|
+
- Create and manipulate spectrum objects
|
|
20
|
+
- Plot spectra with ease
|
|
21
|
+
- Mark spectral lines for analysis
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
|
|
25
|
+
You can install RainbowKit using pip:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install rainbowkit
|
|
29
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# RainbowKit
|
|
2
|
+
|
|
3
|
+
RainbowKit is a Python toolkit for spectral analysis. It allows you to create spectrum objects and execute various methods, such as plotting and marking lines.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- Create and manipulate spectrum objects
|
|
8
|
+
- Plot spectra with ease
|
|
9
|
+
- Mark spectral lines for analysis
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
You can install RainbowKit using pip:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pip install rainbowkit
|
|
17
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "rainbowkit"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Sourav Das", email="souravdas.sd20@gmail.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "Tools to work with spectra"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
|
19
|
+
|
|
File without changes
|