fastmdx 0.1.0__py3-none-any.whl

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.
fastmdx/__init__.py ADDED
@@ -0,0 +1,34 @@
1
+ """`fastmdx` is the PyPI alias for FastMDXplorer.
2
+
3
+ The canonical package is `fastmdxplorer`. This alias exists so that
4
+ `pip install fastmdx` works for users who type the shorter name.
5
+
6
+ Recommended usage in code:
7
+
8
+ import fastmdxplorer as fastmdx # preferred
9
+
10
+ The bare `import fastmdx` form also works and re-exports the
11
+ `fastmdxplorer` namespace.
12
+ """
13
+
14
+ import warnings
15
+
16
+ # Re-export the canonical package's public surface.
17
+ from fastmdxplorer import * # noqa: F401,F403
18
+ from fastmdxplorer import ( # noqa: F401
19
+ FastMDXplorer,
20
+ __author__,
21
+ __citation__,
22
+ __doi__,
23
+ __expansion__,
24
+ __license__,
25
+ __version__,
26
+ )
27
+
28
+ # Friendly notice when the alias is imported directly.
29
+ warnings.warn(
30
+ "Importing 'fastmdx' is supported as a PyPI/import alias for "
31
+ "'fastmdxplorer'. The recommended idiom is "
32
+ "`import fastmdxplorer as fastmdx`. The CLI command is also `fastmdx`.",
33
+ stacklevel=2,
34
+ )
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.4
2
+ Name: fastmdx
3
+ Version: 0.1.0
4
+ Summary: Alias for FastMDXplorer; installs the canonical 'fastmdxplorer' package.
5
+ Author: Adekunle Aina, Derrick Kwan
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/aai-research-lab/FastMDXplorer
8
+ Project-URL: Repository, https://github.com/aai-research-lab/FastMDXplorer
9
+ Keywords: fastmdxplorer,fastmdx,molecular-dynamics
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Topic :: Scientific/Engineering :: Chemistry
16
+ Classifier: Topic :: Scientific/Engineering :: Physics
17
+ Requires-Python: >=3.9
18
+ Description-Content-Type: text/markdown
19
+ Requires-Dist: fastmdxplorer>=0.1.0
20
+
21
+ # fastmdx
22
+
23
+ PyPI alias for [**FastMDXplorer**](https://github.com/aai-research-lab/FastMDXplorer).
24
+
25
+ The canonical package is [`fastmdxplorer`](https://pypi.org/project/fastmdxplorer/). This shim exists so that `pip install fastmdx` works for users who reach for the shorter name. Installing it transparently installs `fastmdxplorer` underneath.
26
+
27
+ ## Recommended usage
28
+
29
+ ```python
30
+ import fastmdxplorer as fastmdx
31
+ ```
32
+
33
+ The bare `import fastmdx` form also works and re-exports the `fastmdxplorer` namespace, emitting a one-time notice suggesting the recommended idiom above.
34
+
35
+ ## CLI
36
+
37
+ The CLI command is also `fastmdx`. It is provided by the canonical `fastmdxplorer` package, so it is available regardless of whether you `pip install fastmdxplorer` or `pip install fastmdx`.
38
+
39
+ ```bash
40
+ fastmdx explore -system protein.pdb
41
+ fastmdx xplore -pdb-id 1L2Y
42
+ ```
43
+
44
+ ## Source code
45
+
46
+ All code, documentation, examples, and issue tracker live at the canonical repository:
47
+
48
+ **https://github.com/aai-research-lab/FastMDXplorer**
49
+
50
+ ## Citation
51
+
52
+ > Aina, A.; Kwan, D. *FastMDAnalysis: Software for Automated Analysis of Molecular Dynamics Trajectories.* J. Comput. Chem. **2026**, 47, e70350. DOI: [10.1002/jcc.70350](https://doi.org/10.1002/jcc.70350)
53
+
54
+ ## License
55
+
56
+ MIT — see the canonical repository for the full text.
@@ -0,0 +1,5 @@
1
+ fastmdx/__init__.py,sha256=2HavgETKtNrrfnjNLnFK7Pt4wHE2Vw8orJgSnN6zWRc,924
2
+ fastmdx-0.1.0.dist-info/METADATA,sha256=30HWcNagfVnSq0FGK-z0QPrXmYCz2Ld__pQcRx-GBS0,2127
3
+ fastmdx-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
4
+ fastmdx-0.1.0.dist-info/top_level.txt,sha256=wSR8FNnVuJE9NqqdqJoIhEjmeq_NOZ1dbsSW659beHE,8
5
+ fastmdx-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ fastmdx