bioelectea 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.
bioelectea/__init__.py ADDED
@@ -0,0 +1,2 @@
1
+ __all__ = ["__version__"]
2
+ __version__ = "0.1.0"
bioelectea/__main__.py ADDED
@@ -0,0 +1,4 @@
1
+ from .cli import main
2
+
3
+ if __name__ == "__main__":
4
+ main()
bioelectea/cli.py ADDED
@@ -0,0 +1,2 @@
1
+ def main():
2
+ print("bioelectea: hello, world! CLI stub is alive.")
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: bioelectea
3
+ Version: 0.1.0
4
+ Summary: BioElecTEA: TEA/LCA toolkit for bioelectrochemical & microfluidic processes
5
+ Author-email: Sunghoon Kim <rlatjdgns456@naver.com>
6
+ License: MIT
7
+ Keywords: LCA,TEA,bioelectrochemistry,microfluidics
8
+ Requires-Python: >=3.11
9
+ Provides-Extra: dev
10
+ Requires-Dist: black; extra == 'dev'
11
+ Requires-Dist: build; extra == 'dev'
12
+ Requires-Dist: mypy; extra == 'dev'
13
+ Requires-Dist: pre-commit; extra == 'dev'
14
+ Requires-Dist: pytest; extra == 'dev'
15
+ Requires-Dist: ruff; extra == 'dev'
16
+ Description-Content-Type: text/markdown
17
+
18
+ # bioelectea
19
+ Quickstart for BioElecTEA package.
@@ -0,0 +1,7 @@
1
+ bioelectea/__init__.py,sha256=sca3B8hAtmHVH9qxtqZusd9a0Kzov3VtgHnvq8_ZJY8,49
2
+ bioelectea/__main__.py,sha256=HrbCy8Q6qXHtsbU7_WIsmGfH9P4jRqYv8vsXdQdiozw,62
3
+ bioelectea/cli.py,sha256=DvdPH4SnlIRYKI4IQmR1W9fHE77VdAr30gUKp6POjWU,71
4
+ bioelectea-0.1.0.dist-info/METADATA,sha256=wQ4IXUD2uTEuoZflp6naBWiO2HN0xfdZVMg25ZmUIMg,618
5
+ bioelectea-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
6
+ bioelectea-0.1.0.dist-info/entry_points.txt,sha256=HK1ogjSOhfUb_H8kBIXvkaZ2XyPJHakSHd5tKuqxTEc,51
7
+ bioelectea-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ bioelectea = bioelectea.cli:main