geolens 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.
geolens-0.0.1/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023, Krishnagopal Halder
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
+
@@ -0,0 +1,7 @@
1
+ include LICENSE
2
+ include README.md
3
+ include requirements.txt
4
+
5
+ recursive-exclude * __pycache__
6
+ recursive-exclude * *.py[co]
7
+
geolens-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.1
2
+ Name: geolens
3
+ Version: 0.0.1
4
+ Summary: A python package for interactive mapping.
5
+ Home-page: https://github.com/geonextgis/geolens
6
+ Author: Krishnagopal Halder
7
+ Author-email: geonextgis@gmail.com
8
+ License: MIT license
9
+ Keywords: geolens
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Natural Language :: English
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.7
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Requires-Python: >=3.7
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+
23
+ # geolens
24
+
25
+
26
+ [![image](https://img.shields.io/pypi/v/geolens.svg)](https://pypi.python.org/pypi/geolens)
27
+ [![image](https://img.shields.io/conda/vn/conda-forge/geolens.svg)](https://anaconda.org/conda-forge/geolens)
28
+
29
+
30
+ **A python package for interactive mapping.**
31
+
32
+
33
+ - Free software: MIT license
34
+ - Documentation: https://geonextgis.github.io/geolens
35
+
36
+
37
+ ## Features
38
+
39
+ - TODO
40
+
41
+ ## Credits
42
+
43
+ This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) and the [giswqs/pypackage](https://github.com/giswqs/pypackage) project template.
@@ -0,0 +1,21 @@
1
+ # geolens
2
+
3
+
4
+ [![image](https://img.shields.io/pypi/v/geolens.svg)](https://pypi.python.org/pypi/geolens)
5
+ [![image](https://img.shields.io/conda/vn/conda-forge/geolens.svg)](https://anaconda.org/conda-forge/geolens)
6
+
7
+
8
+ **A python package for interactive mapping.**
9
+
10
+
11
+ - Free software: MIT license
12
+ - Documentation: https://geonextgis.github.io/geolens
13
+
14
+
15
+ ## Features
16
+
17
+ - TODO
18
+
19
+ ## Credits
20
+
21
+ This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) and the [giswqs/pypackage](https://github.com/giswqs/pypackage) project template.
@@ -0,0 +1,5 @@
1
+ """Top-level package for geolens."""
2
+
3
+ __author__ = """Krishnagopal Halder"""
4
+ __email__ = 'geonextgis@gmail.com'
5
+ __version__ = '0.0.1'
@@ -0,0 +1 @@
1
+ """Main module."""
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.1
2
+ Name: geolens
3
+ Version: 0.0.1
4
+ Summary: A python package for interactive mapping.
5
+ Home-page: https://github.com/geonextgis/geolens
6
+ Author: Krishnagopal Halder
7
+ Author-email: geonextgis@gmail.com
8
+ License: MIT license
9
+ Keywords: geolens
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Natural Language :: English
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.7
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Requires-Python: >=3.7
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+
23
+ # geolens
24
+
25
+
26
+ [![image](https://img.shields.io/pypi/v/geolens.svg)](https://pypi.python.org/pypi/geolens)
27
+ [![image](https://img.shields.io/conda/vn/conda-forge/geolens.svg)](https://anaconda.org/conda-forge/geolens)
28
+
29
+
30
+ **A python package for interactive mapping.**
31
+
32
+
33
+ - Free software: MIT license
34
+ - Documentation: https://geonextgis.github.io/geolens
35
+
36
+
37
+ ## Features
38
+
39
+ - TODO
40
+
41
+ ## Credits
42
+
43
+ This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) and the [giswqs/pypackage](https://github.com/giswqs/pypackage) project template.
@@ -0,0 +1,13 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ requirements.txt
5
+ setup.cfg
6
+ setup.py
7
+ geolens/__init__.py
8
+ geolens/geolens.py
9
+ geolens.egg-info/PKG-INFO
10
+ geolens.egg-info/SOURCES.txt
11
+ geolens.egg-info/dependency_links.txt
12
+ geolens.egg-info/not-zip-safe
13
+ geolens.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ geolens
File without changes
@@ -0,0 +1,25 @@
1
+ [bumpversion]
2
+ current_version = 0.0.1
3
+ commit = True
4
+ tag = True
5
+
6
+ [bumpversion:file:setup.py]
7
+ search = version='{current_version}'
8
+ replace = version='{new_version}'
9
+
10
+ [bumpversion:file:geolens/__init__.py]
11
+ search = __version__ = '{current_version}'
12
+ replace = __version__ = '{new_version}'
13
+
14
+ [bdist_wheel]
15
+ universal = 1
16
+
17
+ [flake8]
18
+ exclude = docs
19
+
20
+ [aliases]
21
+
22
+ [egg_info]
23
+ tag_build =
24
+ tag_date = 0
25
+
geolens-0.0.1/setup.py ADDED
@@ -0,0 +1,58 @@
1
+ #!/usr/bin/env python
2
+
3
+ """The setup script."""
4
+
5
+ import io
6
+ from os import path as op
7
+ from setuptools import setup, find_packages
8
+
9
+ with open('README.md') as readme_file:
10
+ readme = readme_file.read()
11
+
12
+ here = op.abspath(op.dirname(__file__))
13
+
14
+ # get the dependencies and installs
15
+ with io.open(op.join(here, "requirements.txt"), encoding="utf-8") as f:
16
+ all_reqs = f.read().split("\n")
17
+
18
+ install_requires = [x.strip() for x in all_reqs if "git+" not in x]
19
+ dependency_links = [x.strip().replace("git+", "") for x in all_reqs if "git+" not in x]
20
+
21
+ requirements = [ ]
22
+
23
+ setup_requirements = [ ]
24
+
25
+ test_requirements = [ ]
26
+
27
+ setup(
28
+ author="Krishnagopal Halder",
29
+ author_email='geonextgis@gmail.com',
30
+ python_requires='>=3.7',
31
+ classifiers=[
32
+ 'Development Status :: 2 - Pre-Alpha',
33
+ 'Intended Audience :: Developers',
34
+ 'License :: OSI Approved :: MIT License',
35
+ 'Natural Language :: English',
36
+ 'Programming Language :: Python :: 3',
37
+ 'Programming Language :: Python :: 3.7',
38
+ 'Programming Language :: Python :: 3.8',
39
+ 'Programming Language :: Python :: 3.9',
40
+ 'Programming Language :: Python :: 3.10',
41
+ ],
42
+ description="A python package for interactive mapping.",
43
+ install_requires=install_requires,
44
+ dependency_links=dependency_links,
45
+ license="MIT license",
46
+ long_description=readme,
47
+ long_description_content_type='text/markdown',
48
+ include_package_data=True,
49
+ keywords='geolens',
50
+ name='geolens',
51
+ packages=find_packages(include=['geolens', 'geolens.*']),
52
+ setup_requires=setup_requirements,
53
+ test_suite='tests',
54
+ tests_require=test_requirements,
55
+ url='https://github.com/geonextgis/geolens',
56
+ version='0.0.1',
57
+ zip_safe=False,
58
+ )