plaknit 0.0.1__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.
- plaknit-0.0.1/LICENSE +22 -0
- plaknit-0.0.1/MANIFEST.in +7 -0
- plaknit-0.0.1/PKG-INFO +45 -0
- plaknit-0.0.1/README.md +17 -0
- plaknit-0.0.1/plaknit/__init__.py +5 -0
- plaknit-0.0.1/plaknit/cli.py +19 -0
- plaknit-0.0.1/plaknit/common.py +7 -0
- plaknit-0.0.1/plaknit/plaknit.py +1 -0
- plaknit-0.0.1/plaknit.egg-info/PKG-INFO +45 -0
- plaknit-0.0.1/plaknit.egg-info/SOURCES.txt +16 -0
- plaknit-0.0.1/plaknit.egg-info/dependency_links.txt +1 -0
- plaknit-0.0.1/plaknit.egg-info/entry_points.txt +2 -0
- plaknit-0.0.1/plaknit.egg-info/requires.txt +7 -0
- plaknit-0.0.1/plaknit.egg-info/top_level.txt +1 -0
- plaknit-0.0.1/pyproject.toml +66 -0
- plaknit-0.0.1/requirements.txt +1 -0
- plaknit-0.0.1/setup.cfg +4 -0
- plaknit-0.0.1/tests/test_plaknit.py +21 -0
plaknit-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025, Dryver Finch
|
|
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.
|
|
22
|
+
|
plaknit-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: plaknit
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Processing Large-Scale PlanetScope Data
|
|
5
|
+
Author-email: Dryver Finch <dryver2206@gmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
Project-URL: Homepage, https://github.com/dzfinch/plaknit
|
|
8
|
+
Project-URL: Issues, https://github.com/dzfinch/plaknit/issues
|
|
9
|
+
Project-URL: Documentation, https://dzfinch.github.io/plaknit/
|
|
10
|
+
Keywords: plaknit
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Natural Language :: English
|
|
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
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: numpy
|
|
23
|
+
Provides-Extra: extra
|
|
24
|
+
Requires-Dist: pandas; extra == "extra"
|
|
25
|
+
Provides-Extra: all
|
|
26
|
+
Requires-Dist: pandas; extra == "all"
|
|
27
|
+
Dynamic: license-file
|
|
28
|
+
|
|
29
|
+
# plaknit
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
[](https://pypi.python.org/pypi/plaknit)
|
|
33
|
+
[](https://anaconda.org/conda-forge/plaknit)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
**Processing Large-Scale PlanetScope Data**
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
- Free software: MIT License
|
|
40
|
+
- Documentation: https://dzfinch.github.io/plaknit
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
## Features
|
|
44
|
+
|
|
45
|
+
- TODO
|
plaknit-0.0.1/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# plaknit
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
[](https://pypi.python.org/pypi/plaknit)
|
|
5
|
+
[](https://anaconda.org/conda-forge/plaknit)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
**Processing Large-Scale PlanetScope Data**
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
- Free software: MIT License
|
|
12
|
+
- Documentation: https://dzfinch.github.io/plaknit
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## Features
|
|
16
|
+
|
|
17
|
+
- TODO
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Console script for plaknit."""
|
|
2
|
+
import argparse
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def main():
|
|
7
|
+
"""Console script for plaknit."""
|
|
8
|
+
parser = argparse.ArgumentParser()
|
|
9
|
+
parser.add_argument('_', nargs='*')
|
|
10
|
+
args = parser.parse_args()
|
|
11
|
+
|
|
12
|
+
print("Arguments: " + str(args._))
|
|
13
|
+
print("Replace this message by putting your code into "
|
|
14
|
+
"plaknit.cli.main")
|
|
15
|
+
return 0
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
if __name__ == "__main__":
|
|
19
|
+
sys.exit(main()) # pragma: no cover
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Main module."""
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: plaknit
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Processing Large-Scale PlanetScope Data
|
|
5
|
+
Author-email: Dryver Finch <dryver2206@gmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
Project-URL: Homepage, https://github.com/dzfinch/plaknit
|
|
8
|
+
Project-URL: Issues, https://github.com/dzfinch/plaknit/issues
|
|
9
|
+
Project-URL: Documentation, https://dzfinch.github.io/plaknit/
|
|
10
|
+
Keywords: plaknit
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Natural Language :: English
|
|
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
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: numpy
|
|
23
|
+
Provides-Extra: extra
|
|
24
|
+
Requires-Dist: pandas; extra == "extra"
|
|
25
|
+
Provides-Extra: all
|
|
26
|
+
Requires-Dist: pandas; extra == "all"
|
|
27
|
+
Dynamic: license-file
|
|
28
|
+
|
|
29
|
+
# plaknit
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
[](https://pypi.python.org/pypi/plaknit)
|
|
33
|
+
[](https://anaconda.org/conda-forge/plaknit)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
**Processing Large-Scale PlanetScope Data**
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
- Free software: MIT License
|
|
40
|
+
- Documentation: https://dzfinch.github.io/plaknit
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
## Features
|
|
44
|
+
|
|
45
|
+
- TODO
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
MANIFEST.in
|
|
3
|
+
README.md
|
|
4
|
+
pyproject.toml
|
|
5
|
+
requirements.txt
|
|
6
|
+
plaknit/__init__.py
|
|
7
|
+
plaknit/cli.py
|
|
8
|
+
plaknit/common.py
|
|
9
|
+
plaknit/plaknit.py
|
|
10
|
+
plaknit.egg-info/PKG-INFO
|
|
11
|
+
plaknit.egg-info/SOURCES.txt
|
|
12
|
+
plaknit.egg-info/dependency_links.txt
|
|
13
|
+
plaknit.egg-info/entry_points.txt
|
|
14
|
+
plaknit.egg-info/requires.txt
|
|
15
|
+
plaknit.egg-info/top_level.txt
|
|
16
|
+
tests/test_plaknit.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
plaknit
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "plaknit"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Processing Large-Scale PlanetScope Data"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.8"
|
|
7
|
+
keywords = ["plaknit"]
|
|
8
|
+
license = { text = "MIT License" }
|
|
9
|
+
authors = [{ name = "Dryver Finch", email = "dryver2206@gmail.com" }]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Intended Audience :: Developers",
|
|
12
|
+
"License :: OSI Approved :: MIT License",
|
|
13
|
+
"Natural Language :: English",
|
|
14
|
+
"Programming Language :: Python :: 3.8",
|
|
15
|
+
"Programming Language :: Python :: 3.9",
|
|
16
|
+
"Programming Language :: Python :: 3.10",
|
|
17
|
+
"Programming Language :: Python :: 3.11",
|
|
18
|
+
"Programming Language :: Python :: 3.12",
|
|
19
|
+
]
|
|
20
|
+
dynamic = ["dependencies"]
|
|
21
|
+
|
|
22
|
+
[project.entry-points."console_scripts"]
|
|
23
|
+
plaknit = "plaknit.cli:main"
|
|
24
|
+
|
|
25
|
+
[project.optional-dependencies]
|
|
26
|
+
extra = ["pandas"]
|
|
27
|
+
# If you want "all" to include every extra, list them explicitly (no self-deps):
|
|
28
|
+
all = [
|
|
29
|
+
"pandas",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[project.urls]
|
|
33
|
+
Homepage = "https://github.com/dzfinch/plaknit"
|
|
34
|
+
Issues = "https://github.com/dzfinch/plaknit/issues"
|
|
35
|
+
Documentation = "https://dzfinch.github.io/plaknit/"
|
|
36
|
+
|
|
37
|
+
[tool.setuptools.packages.find]
|
|
38
|
+
include = ["plaknit*"]
|
|
39
|
+
exclude = ["docs*"]
|
|
40
|
+
|
|
41
|
+
[tool.setuptools.dynamic]
|
|
42
|
+
dependencies = { file = ["requirements.txt"] }
|
|
43
|
+
|
|
44
|
+
[tool.bumpversion]
|
|
45
|
+
current_version = "0.0.1"
|
|
46
|
+
commit = true
|
|
47
|
+
tag = true
|
|
48
|
+
tag_name = "v{new_version}"
|
|
49
|
+
|
|
50
|
+
[[tool.bumpversion.files]]
|
|
51
|
+
filename = "pyproject.toml"
|
|
52
|
+
search = 'version = "{current_version}"'
|
|
53
|
+
replace = 'version = "{new_version}"'
|
|
54
|
+
|
|
55
|
+
[[tool.bumpversion.files]]
|
|
56
|
+
filename = "plaknit/__init__.py"
|
|
57
|
+
search = '__version__ = "{current_version}"'
|
|
58
|
+
replace = '__version__ = "{new_version}"'
|
|
59
|
+
|
|
60
|
+
[tool.flake8]
|
|
61
|
+
exclude = ["docs"]
|
|
62
|
+
max-line-length = 88
|
|
63
|
+
|
|
64
|
+
[build-system]
|
|
65
|
+
requires = ["setuptools>=64", "wheel"]
|
|
66
|
+
build-backend = "setuptools.build_meta"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
numpy
|
plaknit-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
|
|
3
|
+
"""Tests for `plaknit` package."""
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
import unittest
|
|
7
|
+
|
|
8
|
+
from plaknit import plaknit
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class TestPlaknit(unittest.TestCase):
|
|
12
|
+
"""Tests for `plaknit` package."""
|
|
13
|
+
|
|
14
|
+
def setUp(self):
|
|
15
|
+
"""Set up test fixtures, if any."""
|
|
16
|
+
|
|
17
|
+
def tearDown(self):
|
|
18
|
+
"""Tear down test fixtures, if any."""
|
|
19
|
+
|
|
20
|
+
def test_000_something(self):
|
|
21
|
+
"""Test something."""
|