pingtile 0.0.1a0__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,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: pingtile
3
+ Version: 0.0.1a0
4
+ Summary: Interface to tile sonar mosaics and maps.
5
+ Author: Cameron Bodine
6
+ Author-email: bodine.cs@gmail.email
7
+ Project-URL: Issues, https://github.com/CameronBodine/PINGTile/issues
8
+ Project-URL: GitHub, https://github.com/CameronBodine/PINGTile
9
+ Project-URL: Homepage, https://cameronbodine.github.io/PINGTile/
10
+ Keywords: pingmapper,sonar,ecology,remotesensing,sidescan,sidescan-sonar,aquatic,humminbird,lowrance,gis,oceanography,limnology
11
+ Classifier: Development Status :: 2 - Pre-Alpha
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Topic :: Scientific/Engineering
16
+ Classifier: Topic :: Scientific/Engineering :: Visualization
17
+ Classifier: Topic :: Scientific/Engineering :: Oceanography
18
+ Classifier: Topic :: Scientific/Engineering :: GIS
19
+ Classifier: Topic :: Scientific/Engineering :: Hydrology
20
+ Requires-Python: <3.13
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: pinginstaller
23
+ Requires-Dist: pingwizard
24
+ Dynamic: author
25
+ Dynamic: author-email
26
+ Dynamic: classifier
27
+ Dynamic: description
28
+ Dynamic: description-content-type
29
+ Dynamic: keywords
30
+ Dynamic: project-url
31
+ Dynamic: requires-dist
32
+ Dynamic: requires-python
33
+ Dynamic: summary
34
+
35
+ # PINGTile
36
+ Interface to tile sonar mosaics and maps.
@@ -0,0 +1,2 @@
1
+ # PINGTile
2
+ Interface to tile sonar mosaics and maps.
@@ -0,0 +1 @@
1
+ from .version import __version__
@@ -0,0 +1 @@
1
+ __version__ = '0.0.1-alpha'
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: pingtile
3
+ Version: 0.0.1a0
4
+ Summary: Interface to tile sonar mosaics and maps.
5
+ Author: Cameron Bodine
6
+ Author-email: bodine.cs@gmail.email
7
+ Project-URL: Issues, https://github.com/CameronBodine/PINGTile/issues
8
+ Project-URL: GitHub, https://github.com/CameronBodine/PINGTile
9
+ Project-URL: Homepage, https://cameronbodine.github.io/PINGTile/
10
+ Keywords: pingmapper,sonar,ecology,remotesensing,sidescan,sidescan-sonar,aquatic,humminbird,lowrance,gis,oceanography,limnology
11
+ Classifier: Development Status :: 2 - Pre-Alpha
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Topic :: Scientific/Engineering
16
+ Classifier: Topic :: Scientific/Engineering :: Visualization
17
+ Classifier: Topic :: Scientific/Engineering :: Oceanography
18
+ Classifier: Topic :: Scientific/Engineering :: GIS
19
+ Classifier: Topic :: Scientific/Engineering :: Hydrology
20
+ Requires-Python: <3.13
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: pinginstaller
23
+ Requires-Dist: pingwizard
24
+ Dynamic: author
25
+ Dynamic: author-email
26
+ Dynamic: classifier
27
+ Dynamic: description
28
+ Dynamic: description-content-type
29
+ Dynamic: keywords
30
+ Dynamic: project-url
31
+ Dynamic: requires-dist
32
+ Dynamic: requires-python
33
+ Dynamic: summary
34
+
35
+ # PINGTile
36
+ Interface to tile sonar mosaics and maps.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ setup.py
3
+ pingtile/__init__.py
4
+ pingtile/version.py
5
+ pingtile.egg-info/PKG-INFO
6
+ pingtile.egg-info/SOURCES.txt
7
+ pingtile.egg-info/dependency_links.txt
8
+ pingtile.egg-info/requires.txt
9
+ pingtile.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ pinginstaller
2
+ pingwizard
@@ -0,0 +1 @@
1
+ pingtile
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,50 @@
1
+ from setuptools import setup, find_packages
2
+ from pathlib import Path
3
+
4
+ DESCRIPTION = 'Interface to tile sonar mosaics and maps.'
5
+ LONG_DESCRIPTION = Path('README.md').read_text()
6
+
7
+ exec(open('pingtile/version.py').read())
8
+
9
+ setup(
10
+ name="pingtile",
11
+ version=__version__,
12
+ author="Cameron Bodine",
13
+ author_email="bodine.cs@gmail.email",
14
+ description=DESCRIPTION,
15
+ long_description=LONG_DESCRIPTION,
16
+ long_description_content_type='text/markdown',
17
+ packages=find_packages(),
18
+ # data_files=[("pingmapper_config", ["pingmapper/default_params.json"])],
19
+ classifiers=[
20
+ "Development Status :: 2 - Pre-Alpha",
21
+ "Programming Language :: Python :: 3",
22
+ "License :: OSI Approved :: MIT License",
23
+ "Operating System :: OS Independent",
24
+ "Topic :: Scientific/Engineering",
25
+ "Topic :: Scientific/Engineering :: Visualization",
26
+ "Topic :: Scientific/Engineering :: Oceanography",
27
+ "Topic :: Scientific/Engineering :: GIS",
28
+ "Topic :: Scientific/Engineering :: Hydrology"
29
+ ],
30
+ keywords=[
31
+ "pingmapper",
32
+ "sonar",
33
+ "ecology",
34
+ "remotesensing",
35
+ "sidescan",
36
+ "sidescan-sonar",
37
+ "aquatic",
38
+ "humminbird",
39
+ "lowrance",
40
+ "gis",
41
+ "oceanography",
42
+ "limnology",],
43
+ python_requires="<3.13",
44
+ install_requires=['pinginstaller', 'pingwizard'],
45
+ project_urls={
46
+ "Issues": "https://github.com/CameronBodine/PINGTile/issues",
47
+ "GitHub":"https://github.com/CameronBodine/PINGTile",
48
+ "Homepage":"https://cameronbodine.github.io/PINGTile/",
49
+ },
50
+ )