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 +35 -0
- molass-0.0.0/README.md +3 -0
- molass-0.0.0/molass/Example.py +6 -0
- molass-0.0.0/molass/__init__.py +1 -0
- molass-0.0.0/molass.egg-info/PKG-INFO +35 -0
- molass-0.0.0/molass.egg-info/SOURCES.txt +9 -0
- molass-0.0.0/molass.egg-info/dependency_links.txt +1 -0
- molass-0.0.0/molass.egg-info/requires.txt +2 -0
- molass-0.0.0/molass.egg-info/top_level.txt +1 -0
- molass-0.0.0/setup.cfg +4 -0
- molass-0.0.0/setup.py +41 -0
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 @@
|
|
|
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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
molass
|
molass-0.0.0/setup.cfg
ADDED
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
|
+
)
|