molass 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.
molass-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.2
2
+ Name: molass
3
+ Version: 0.0.0
4
+ Summary: Matrix Optimization with Low-rank factorization for Automated analysis of SEC-SAXS.
5
+ Home-page: https://github.com/freesemt/molass-library
6
+ Author: Masatsuyo Takahashi, Nobutaka Shimizu
7
+ Author-email: freesemt@gmail.com
8
+ License: GPLv3
9
+ Project-URL: Source Code, https://github.com/freesemt/molass-library
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Environment :: Console
12
+ Classifier: Environment :: Web Environment
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Science/Research
15
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Requires-Python: >=3.9
18
+ Description-Content-Type: text/markdown
19
+ Requires-Dist: numpy
20
+ Requires-Dist: matplotlib
21
+ Dynamic: author
22
+ Dynamic: author-email
23
+ Dynamic: classifier
24
+ Dynamic: description
25
+ Dynamic: description-content-type
26
+ Dynamic: home-page
27
+ Dynamic: license
28
+ Dynamic: project-url
29
+ Dynamic: requires-dist
30
+ Dynamic: requires-python
31
+ Dynamic: summary
32
+
33
+ # Molass Library
34
+
35
+ Molass Library is a rewrite of [MOLASS](https://www.jstage.jst.go.jp/article/biophysico/20/1/20_e200001/_article), an analytical tool for SEC-SAXS experiment data currently ported at [Photon Factory](https://pfwww.kek.jp/saxs/MOLASS.html). It is designed to be suitable for scripting in Jupyter notebooks, thereby obtaining greater flexibility compared to the predecessor thanks to the Python ecosystem diversity.
molass-0.0.0/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Molass Library
2
+
3
+ Molass Library is a rewrite of [MOLASS](https://www.jstage.jst.go.jp/article/biophysico/20/1/20_e200001/_article), an analytical tool for SEC-SAXS experiment data currently ported at [Photon Factory](https://pfwww.kek.jp/saxs/MOLASS.html). It is designed to be suitable for scripting in Jupyter notebooks, thereby obtaining greater flexibility compared to the predecessor thanks to the Python ecosystem diversity.
@@ -0,0 +1,6 @@
1
+ """
2
+ Example.py
3
+ This is an example of how to use the molass package."""
4
+
5
+ def example():
6
+ print("Hello, World!")
@@ -0,0 +1 @@
1
+ from molass.Example import example
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.2
2
+ Name: molass
3
+ Version: 0.0.0
4
+ Summary: Matrix Optimization with Low-rank factorization for Automated analysis of SEC-SAXS.
5
+ Home-page: https://github.com/freesemt/molass-library
6
+ Author: Masatsuyo Takahashi, Nobutaka Shimizu
7
+ Author-email: freesemt@gmail.com
8
+ License: GPLv3
9
+ Project-URL: Source Code, https://github.com/freesemt/molass-library
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Environment :: Console
12
+ Classifier: Environment :: Web Environment
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Science/Research
15
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Requires-Python: >=3.9
18
+ Description-Content-Type: text/markdown
19
+ Requires-Dist: numpy
20
+ Requires-Dist: matplotlib
21
+ Dynamic: author
22
+ Dynamic: author-email
23
+ Dynamic: classifier
24
+ Dynamic: description
25
+ Dynamic: description-content-type
26
+ Dynamic: home-page
27
+ Dynamic: license
28
+ Dynamic: project-url
29
+ Dynamic: requires-dist
30
+ Dynamic: requires-python
31
+ Dynamic: summary
32
+
33
+ # Molass Library
34
+
35
+ Molass Library is a rewrite of [MOLASS](https://www.jstage.jst.go.jp/article/biophysico/20/1/20_e200001/_article), an analytical tool for SEC-SAXS experiment data currently ported at [Photon Factory](https://pfwww.kek.jp/saxs/MOLASS.html). It is designed to be suitable for scripting in Jupyter notebooks, thereby obtaining greater flexibility compared to the predecessor thanks to the Python ecosystem diversity.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ setup.py
3
+ molass/Example.py
4
+ molass/__init__.py
5
+ molass.egg-info/PKG-INFO
6
+ molass.egg-info/SOURCES.txt
7
+ molass.egg-info/dependency_links.txt
8
+ molass.egg-info/requires.txt
9
+ molass.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ numpy
2
+ matplotlib
@@ -0,0 +1 @@
1
+ molass
molass-0.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
molass-0.0.0/setup.py ADDED
@@ -0,0 +1,41 @@
1
+ from pathlib import Path
2
+
3
+ import setuptools
4
+
5
+ VERSION = "0.0.0" # PEP-440
6
+
7
+ NAME = "molass"
8
+
9
+ INSTALL_REQUIRES = [
10
+ "numpy",
11
+ "matplotlib",
12
+ ]
13
+
14
+ setuptools.setup(
15
+ name=NAME,
16
+ version=VERSION,
17
+ description="Matrix Optimization with Low-rank factorization for Automated analysis of SEC-SAXS.",
18
+ url="https://github.com/freesemt/molass-library",
19
+ project_urls={
20
+ "Source Code": "https://github.com/freesemt/molass-library",
21
+ },
22
+ author="Masatsuyo Takahashi, Nobutaka Shimizu",
23
+ author_email="freesemt@gmail.com",
24
+ license="GPLv3",
25
+ classifiers=[
26
+ "Development Status :: 1 - Planning",
27
+ "Environment :: Console",
28
+ "Environment :: Web Environment",
29
+ "Intended Audience :: Developers",
30
+ "Intended Audience :: Science/Research",
31
+ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
32
+ "Programming Language :: Python :: 3.12",
33
+ ],
34
+ # SAngler uses Python 3.9
35
+ python_requires=">=3.9",
36
+ # Requirements
37
+ install_requires=INSTALL_REQUIRES,
38
+ packages=["molass"],
39
+ long_description=Path("README.md").read_text(),
40
+ long_description_content_type="text/markdown",
41
+ )