bioLOLPython 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.
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: bioLOLPython
3
+ Version: 0.1.0
4
+ Summary: A meme-inspired biological language interpreter — internet slang meets bioinformatics
5
+ Author-email: Chen Hsieh <chen.hsieh.uga@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/ChenHsieh/bioLOLPython
8
+ Project-URL: Repository, https://github.com/ChenHsieh/bioLOLPython
9
+ Project-URL: Issues, https://github.com/ChenHsieh/bioLOLPython/issues
10
+ Keywords: bioinformatics,esoteric-language,meme,lolcode,dna,genomics
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Education
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
16
+ Requires-Python: >=3.8
17
+ Description-Content-Type: text/markdown
18
+ License-File: LICENSE
19
+ Requires-Dist: biopython
20
+ Requires-Dist: ply
21
+ Requires-Dist: pyyaml
22
+ Dynamic: license-file
@@ -0,0 +1,23 @@
1
+ bioLOLPython/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ bioLOLPython/__main__.py,sha256=uFQRE6JMGKgEypRyKUjdW_TWODnOpfU4BdTjxbXyjZw,42
3
+ bioLOLPython/cli.py,sha256=OOZeJrrI-ilHZdmNBOGdf5f84G-DWHpgFyFvXu-nujE,2491
4
+ bioLOLPython/interpreter.py,sha256=TrUhmdSsN_45LaHGBcddEQR7vQhULevPzpfauMhQchY,29701
5
+ bioLOLPython/bio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ bioLOLPython/bio/sequence.py,sha256=D7RKt-wHZq2avmcnQuwfR_rTRa9WoqNvvalmNSRxlDE,1856
7
+ bioLOLPython/dialects/__init__.py,sha256=-hZeO8wWy6dcXHhSn6x6ckaaXGeyjEnWQrP418ivYxo,1914
8
+ bioLOLPython/dialects/base.py,sha256=8vz7w2ASUfNxHuFJ_WEb7DvMSSu7jUZk1P2tlMrRdkU,3634
9
+ bioLOLPython/dialects/brainrot.py,sha256=DRSFB4lpo7a1dePGxcjatVxEOaNXVjJJkQ1tiaz-cic,2322
10
+ bioLOLPython/dialects/gen_z.py,sha256=F55mCTE-YFsllWD2KArH_kRg3101Tboi-EhyZ5zfZTI,2396
11
+ bioLOLPython/dialects/lolcat.py,sha256=FsDajKZjD05HtAwagPRA3XYyZ9MAd4396sODsvicDC8,2276
12
+ bioLOLPython/dialects/remote.py,sha256=Y_rf-qrO1D_zPskX2yFOZ8e1L-jHzsxLoOfdptIeEjo,2758
13
+ bioLOLPython/dialects/definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ bioLOLPython/dialects/definitions/brainrot.yaml,sha256=UsY3hkJ_2pV-eVxVyP3n93vgOBM4gwr5X9TcRADFH6o,1929
15
+ bioLOLPython/dialects/definitions/gen_z.yaml,sha256=0gZ-F_S7UCfiviA5a6FHCPI0cMkWsMQqQhLC6ffB4n0,2021
16
+ bioLOLPython/dialects/definitions/index.txt,sha256=w3C6sjP44ueOHAfgkef2rKdk1eEhxabuWlVTEdWVw2s,22
17
+ bioLOLPython/dialects/definitions/lolcat.yaml,sha256=cYGdrHhc8AKYG3Y-fc6AL1yE5cNwWMbAlUv9jj9iZbc,1867
18
+ biololpython-0.1.0.dist-info/licenses/LICENSE,sha256=8MTUej5dFZMnQvj1d7zg7DsVwwxfgT1pTyht4PXj3cw,1072
19
+ biololpython-0.1.0.dist-info/METADATA,sha256=R9558YB-IhpbuQcJgaapyN0HHKh_jMznWL62SJiD6NI,921
20
+ biololpython-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
21
+ biololpython-0.1.0.dist-info/entry_points.txt,sha256=WVKVGrDmZIKPry1evewXbce6uWUsBjprUje35OGuYL8,49
22
+ biololpython-0.1.0.dist-info/top_level.txt,sha256=iZ3w1NLVQ8jHZv8f40-bbMkrR_6pc8to9_xFf0AKiwM,13
23
+ biololpython-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,2 @@
1
+ [console_scripts]
2
+ bioLOL = bioLOLPython.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024-2026 Chen Hsieh
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 @@
1
+ bioLOLPython