oceanpipe 0.0.2__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.
@@ -0,0 +1,2 @@
1
+ __pycache__/
2
+ dist/
@@ -0,0 +1,18 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026-present Kenil Ajudiya <k.ajudiya@postgrad.curtin.edu.au>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
7
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
9
+ following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all copies or substantial
12
+ portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.4
2
+ Name: oceanpipe
3
+ Version: 0.0.2
4
+ Summary: A pipeline to scour the MWA Archive for Outbursts of Coherent Emission Amidst Noise.
5
+ Project-URL: Documentation, https://github.com/Kenil-Ajudiya/ocean#readme
6
+ Project-URL: Issues, https://github.com/Kenil-Ajudiya/ocean/issues
7
+ Project-URL: Source, https://github.com/Kenil-Ajudiya/ocean
8
+ Author-email: Kenil Ajudiya <k.ajudiya@postgrad.curtin.edu.au>
9
+ Maintainer-email: Kenil Ajudiya <k.ajudiya@postgrad.curtin.edu.au>
10
+ License-Expression: MIT
11
+ License-File: LICENSE.txt
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Requires-Python: >=3.8
20
+ Requires-Dist: click
21
+ Description-Content-Type: text/markdown
22
+
23
+ # The OCEAN Pipeline
24
+
25
+ ## Scouring the MWA Archive for Outbursts of Coherent Emission Amidst Noise
26
+
27
+ [![PyPI - Version](https://img.shields.io/pypi/v/ocean.svg)](https://pypi.org/project/ocean)
28
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ocean.svg)](https://pypi.org/project/ocean)
29
+
30
+ -----
31
+
32
+ ## Table of Contents
33
+
34
+ - [Installation](#installation)
35
+ - [License](#license)
36
+
37
+ ## Installation
38
+
39
+ ```console
40
+ pip install ocean
41
+ ```
42
+
43
+ ## License
44
+
45
+ `ocean` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
@@ -0,0 +1,23 @@
1
+ # The OCEAN Pipeline
2
+
3
+ ## Scouring the MWA Archive for Outbursts of Coherent Emission Amidst Noise
4
+
5
+ [![PyPI - Version](https://img.shields.io/pypi/v/ocean.svg)](https://pypi.org/project/ocean)
6
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ocean.svg)](https://pypi.org/project/ocean)
7
+
8
+ -----
9
+
10
+ ## Table of Contents
11
+
12
+ - [Installation](#installation)
13
+ - [License](#license)
14
+
15
+ ## Installation
16
+
17
+ ```console
18
+ pip install ocean
19
+ ```
20
+
21
+ ## License
22
+
23
+ `ocean` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
@@ -0,0 +1,71 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "oceanpipe"
7
+ dynamic = ["version"]
8
+ description = 'A pipeline to scour the MWA Archive for Outbursts of Coherent Emission Amidst Noise.'
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "MIT"
12
+ keywords = []
13
+ authors = [{ name = "Kenil Ajudiya", email = "k.ajudiya@postgrad.curtin.edu.au" }]
14
+ maintainers = [{ name = "Kenil Ajudiya", email = "k.ajudiya@postgrad.curtin.edu.au" }]
15
+ classifiers = [
16
+ "Development Status :: 4 - Beta",
17
+ "Programming Language :: Python",
18
+ "Programming Language :: Python :: 3.8",
19
+ "Programming Language :: Python :: 3.9",
20
+ "Programming Language :: Python :: 3.10",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ ]
24
+ dependencies = ["click"]
25
+
26
+ [project.urls]
27
+ Documentation = "https://github.com/Kenil-Ajudiya/ocean#readme"
28
+ Issues = "https://github.com/Kenil-Ajudiya/ocean/issues"
29
+ Source = "https://github.com/Kenil-Ajudiya/ocean"
30
+
31
+ [project.scripts]
32
+ ocean = "ocean.cli:ocean"
33
+
34
+ [tool.hatch.version]
35
+ path = "src/ocean/__about__.py"
36
+
37
+ [tool.hatch.envs.types]
38
+ extra-dependencies = ["mypy>=1.0.0"]
39
+ [tool.hatch.envs.types.scripts]
40
+ check = "mypy --install-types --non-interactive {args:src/ocean tests}"
41
+
42
+ [tool.coverage.run]
43
+ source_pkgs = ["ocean", "tests"]
44
+ branch = true
45
+ parallel = true
46
+ omit = ["src/ocean/__about__.py"]
47
+
48
+ [tool.coverage.paths]
49
+ ocean = ["src/ocean", "*/ocean/src/ocean"]
50
+ tests = ["tests", "*/ocean/tests"]
51
+
52
+ [tool.coverage.report]
53
+ exclude_lines = [
54
+ "no cov",
55
+ "if __name__ == .__main__.:",
56
+ "if TYPE_CHECKING:"
57
+ ]
58
+
59
+ [tool.hatch.build]
60
+ include = [
61
+ "src/ocean/**",
62
+ "README.md",
63
+ "LICENSE",
64
+ ]
65
+
66
+ [tool.hatch.build.targets.wheel]
67
+ packages = ["src/ocean"]
68
+
69
+ [tool.hatch.publish.index.repos]
70
+ test = "https://test.pypi.org/project/oceanpipe/"
71
+ main = "https://upload.pypi.org/project/oceanpipe/"
@@ -0,0 +1,4 @@
1
+ # SPDX-FileCopyrightText: 2026-present Kenil Ajudiya <k.ajudiya@postgrad.curtin.edu.au>
2
+ #
3
+ # SPDX-License-Identifier: MIT
4
+ __version__ = "0.0.2"
@@ -0,0 +1,3 @@
1
+ # SPDX-FileCopyrightText: 2026-present Kenil Ajudiya <k.ajudiya@postgrad.curtin.edu.au>
2
+ #
3
+ # SPDX-License-Identifier: MIT
@@ -0,0 +1,9 @@
1
+ # SPDX-FileCopyrightText: 2026-present Kenil Ajudiya <k.ajudiya@postgrad.curtin.edu.au>
2
+ #
3
+ # SPDX-License-Identifier: MIT
4
+ import sys
5
+
6
+ if __name__ == "__main__":
7
+ from ocean.cli import ocean
8
+
9
+ sys.exit(ocean())
@@ -0,0 +1,13 @@
1
+ # SPDX-FileCopyrightText: 2026-present Kenil Ajudiya <k.ajudiya@postgrad.curtin.edu.au>
2
+ #
3
+ # SPDX-License-Identifier: MIT
4
+ import click
5
+
6
+ from ocean.__about__ import __version__
7
+
8
+
9
+ @click.group(context_settings={"help_option_names": ["-h", "--help"]}, invoke_without_command=True)
10
+ @click.version_option(version=__version__, prog_name="ocean")
11
+ def ocean():
12
+ click.echo("Hello world!")
13
+ click.echo("Welcome to OCEAN - Outbursts of Coherent Emission Amidst Noise!")