pygnss 1.0.0.post5__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.

Potentially problematic release.


This version of pygnss might be problematic. Click here for more details.

@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Rokubun
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.
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.1
2
+ Name: pygnss
3
+ Version: 1.0.0.post5
4
+ Summary: Rokubun GNSS processing utilities.
5
+ Home-page: https://github.com/rokubun/pygnss
6
+ Author: Rokubun
7
+ Author-email: info@rokubun.cat
8
+ License: http://opensource.org/licenses/MIT
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: docopt
12
+ Requires-Dist: requests
13
+ Requires-Dist: pytest
14
+ Requires-Dist: pytest-mocha
15
+
16
+ # Python GNSS Data processing library
17
+
18
+ This repository includes a series of tools to process GNSS data
19
+
20
+ To install the package:
21
+
22
+ ```bash
23
+ pip3 install pygnss
24
+ ```
@@ -0,0 +1,9 @@
1
+ # Python GNSS Data processing library
2
+
3
+ This repository includes a series of tools to process GNSS data
4
+
5
+ To install the package:
6
+
7
+ ```bash
8
+ pip3 install pygnss
9
+ ```
File without changes
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.1
2
+ Name: pygnss
3
+ Version: 1.0.0.post5
4
+ Summary: Rokubun GNSS processing utilities.
5
+ Home-page: https://github.com/rokubun/pygnss
6
+ Author: Rokubun
7
+ Author-email: info@rokubun.cat
8
+ License: http://opensource.org/licenses/MIT
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: docopt
12
+ Requires-Dist: requests
13
+ Requires-Dist: pytest
14
+ Requires-Dist: pytest-mocha
15
+
16
+ # Python GNSS Data processing library
17
+
18
+ This repository includes a series of tools to process GNSS data
19
+
20
+ To install the package:
21
+
22
+ ```bash
23
+ pip3 install pygnss
24
+ ```
@@ -0,0 +1,12 @@
1
+ LICENSE
2
+ README.md
3
+ setup.cfg
4
+ setup.py
5
+ pygnss/__init__.py
6
+ pygnss.egg-info/PKG-INFO
7
+ pygnss.egg-info/SOURCES.txt
8
+ pygnss.egg-info/dependency_links.txt
9
+ pygnss.egg-info/not-zip-safe
10
+ pygnss.egg-info/requires.txt
11
+ pygnss.egg-info/top_level.txt
12
+ test/test_dummy.py
@@ -0,0 +1,4 @@
1
+ docopt
2
+ requests
3
+ pytest
4
+ pytest-mocha
@@ -0,0 +1 @@
1
+ pygnss
@@ -0,0 +1,7 @@
1
+ [metadata]
2
+ description-file = README.md
3
+
4
+ [egg_info]
5
+ tag_build =
6
+ tag_date = 0
7
+
@@ -0,0 +1,34 @@
1
+ from setuptools import find_packages, setup
2
+
3
+ # read the contents of your README file
4
+ from os import path
5
+ this_directory = path.abspath(path.dirname(__file__))
6
+ with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
7
+ long_description = f.read()
8
+
9
+
10
+ setup(
11
+ name='pygnss',
12
+ version_cc='{version}',
13
+ author='Rokubun',
14
+ author_email='info@rokubun.cat',
15
+ description='Rokubun GNSS processing utilities.',
16
+ long_description=long_description,
17
+ long_description_content_type='text/markdown',
18
+ license='http://opensource.org/licenses/MIT',
19
+ url="https://github.com/rokubun/pygnss",
20
+ setup_requires=['setuptools-git-version-cc'],
21
+ packages=["pygnss"],
22
+ include_package_data=True,
23
+ zip_safe=False,
24
+ install_requires=[
25
+ "docopt",
26
+ "requests",
27
+ "pytest",
28
+ "pytest-mocha",
29
+ ],
30
+ entry_points={
31
+ 'console_scripts': [
32
+ ]
33
+ }
34
+ )
@@ -0,0 +1,8 @@
1
+
2
+ # ------------------------------------------------------------------------------
3
+
4
+ def test_dummy():
5
+ '''Status :: Dummy test :: Should pass'''
6
+
7
+ assert True
8
+