statology 0.0.1.dev0__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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 SharkUtilities
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,51 @@
1
+ Metadata-Version: 2.1
2
+ Name: statology
3
+ Version: 0.0.1.dev0
4
+ Summary: Collection of Statistical Function for Data Science and Analytics
5
+ Home-page: https://github.com/sharkutilities/statology
6
+ Author: shark-utilities developers
7
+ Author-email: statology <neuralNOD@outlook.com>
8
+ License: MIT License
9
+
10
+ Copyright (c) 2024 SharkUtilities
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
29
+
30
+ Project-URL: Homepage, https://github.com/sharkutilities/statology
31
+ Project-URL: Issues, https://github.com/sharkutilities/statology/issues
32
+ Project-URL: Changelog, https://github.com/sharkutilities/statology/blob/master/CHANGELOG.md
33
+ Keywords: numpy,array,utility,utilities,util,utils,wrappers,data science,data analysis,data scientist,data analyst,statistics,outliers,percentile,quantile,probability
34
+ Classifier: Development Status :: 1 - Planning
35
+ Classifier: Intended Audience :: Developers
36
+ Classifier: Intended Audience :: Education
37
+ Classifier: Intended Audience :: End Users/Desktop
38
+ Classifier: Intended Audience :: Information Technology
39
+ Classifier: Intended Audience :: Science/Research
40
+ Classifier: Operating System :: Unix
41
+ Classifier: Operating System :: POSIX
42
+ Classifier: Operating System :: Microsoft :: Windows
43
+ Classifier: Programming Language :: Python
44
+ Classifier: Programming Language :: Python :: 3
45
+ Classifier: Programming Language :: Python :: 3 :: Only
46
+ Classifier: Programming Language :: Python :: 3.9
47
+ Classifier: Programming Language :: Python :: 3.10
48
+ Classifier: Programming Language :: Python :: 3.11
49
+ Classifier: Programming Language :: Python :: 3.12
50
+ Classifier: License :: OSI Approved :: MIT License
51
+ License-File: LICENSE
@@ -0,0 +1,41 @@
1
+ [project]
2
+ name = "statology"
3
+ authors = [{name = "statology", email = "neuralNOD@outlook.com"}]
4
+ dynamic = ["version"]
5
+ # readme = {file = "README.md", content-type = "text/markdown"}
6
+ description = "Collection of Statistical Function for Data Science and Analytics"
7
+ license = {file = "LICENSE"}
8
+ keywords = [
9
+ # keywords for finding the package::
10
+ "numpy", "array", "utility", "utilities", "util", "utils",
11
+ # keywords for finding the package relevant to usecases::
12
+ "wrappers", "data science", "data analysis", "data scientist", "data analyst",
13
+ # keywords as per available functionalities::
14
+ "statistics", "outliers", "percentile", "quantile", "probability"
15
+ ]
16
+ classifiers = [
17
+ "Development Status :: 1 - Planning",
18
+ "Intended Audience :: Developers",
19
+ "Intended Audience :: Education",
20
+ "Intended Audience :: End Users/Desktop",
21
+ "Intended Audience :: Information Technology",
22
+ "Intended Audience :: Science/Research",
23
+ "Operating System :: Unix",
24
+ "Operating System :: POSIX",
25
+ "Operating System :: Microsoft :: Windows",
26
+ "Programming Language :: Python",
27
+ "Programming Language :: Python :: 3",
28
+ "Programming Language :: Python :: 3 :: Only",
29
+ "Programming Language :: Python :: 3.9",
30
+ "Programming Language :: Python :: 3.10",
31
+ "Programming Language :: Python :: 3.11",
32
+ "Programming Language :: Python :: 3.12",
33
+ "License :: OSI Approved :: MIT License"
34
+ ]
35
+
36
+
37
+ [project.urls]
38
+ Homepage = "https://github.com/sharkutilities/statology"
39
+ # Documentation = "https://statology.readthedocs.io/en/latest/index.html"
40
+ Issues = "https://github.com/sharkutilities/statology/issues"
41
+ Changelog = "https://github.com/sharkutilities/statology/blob/master/CHANGELOG.md"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,54 @@
1
+ #!/usr/bin/env python
2
+ #
3
+ # Copywright (C) 2024 Debmalya Pramanik <neuralNOD@gmail.com>
4
+ # LICENSE: MIT License
5
+
6
+ from setuptools import setup
7
+ # from setuptools import find_packages
8
+
9
+ import statology as stats
10
+
11
+ setup(
12
+ name = "statology",
13
+ version = stats.__version__,
14
+ author = "shark-utilities developers",
15
+ author_email = "neuralNOD@outlook.com",
16
+ description = "Collection of Statistical Function",
17
+ # long_description = open("README.md", "r").read(),
18
+ # long_description_content_type = "text/markdown",
19
+ url = "https://github.com/sharkutilities/statology",
20
+ # packages = find_packages(),
21
+ classifiers = [
22
+ "Development Status :: 1 - Planning",
23
+ "Intended Audience :: Developers",
24
+ "Intended Audience :: Education",
25
+ "Intended Audience :: End Users/Desktop",
26
+ "Intended Audience :: Information Technology",
27
+ "Intended Audience :: Science/Research",
28
+ "Operating System :: Unix",
29
+ "Operating System :: POSIX",
30
+ "Operating System :: Microsoft :: Windows",
31
+ "Programming Language :: Python",
32
+ "Programming Language :: Python :: 3",
33
+ "Programming Language :: Python :: 3 :: Only",
34
+ "Programming Language :: Python :: 3.9",
35
+ "Programming Language :: Python :: 3.10",
36
+ "Programming Language :: Python :: 3.11",
37
+ "Programming Language :: Python :: 3.12",
38
+ "License :: OSI Approved :: MIT License"
39
+ ],
40
+ project_urls = {
41
+ "Issue Tracker" : "https://github.com/sharkutilities/statology/issues",
42
+ # "Code Documentations" : "https://statology.readthedocs.io/en/latest/index.html",
43
+ "Org. Homepage" : "https://github.com/sharkutilities"
44
+ },
45
+ keywords = [
46
+ # keywords for finding the package::
47
+ "numpy", "array", "utility", "utilities", "util", "utils",
48
+ # keywords for finding the package relevant to usecases::
49
+ "wrappers", "data science", "data analysis", "data scientist", "data analyst",
50
+ # keywords as per available functionalities::
51
+ "statistics", "outliers", "percentile", "quantile", "probability"
52
+ ],
53
+ # python_requires = ">=3.9"
54
+ )
@@ -0,0 +1,18 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ """
4
+ A Collection of Statistical Function(s)
5
+
6
+ Statistics is the backbone of Data Science and Analytics and the module exposes
7
+ a collection of functions which acts as a wrapper between external libraries
8
+ like :mod:`numpy`, :mod:`scipy.stats` etc.
9
+
10
+ @author: Debmalya Pramanik
11
+ @copywright: 2024; SharkUtilities, ZenithClown
12
+ """
13
+
14
+ # ? package follows https://peps.python.org/pep-0440/
15
+ # ? https://python-semver.readthedocs.io/en/latest/advanced/convert-pypi-to-semver.html
16
+ __version__ = "v0.0.1.dev0"
17
+
18
+ # init-time options registrations
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.1
2
+ Name: statology
3
+ Version: 0.0.1.dev0
4
+ Summary: Collection of Statistical Function for Data Science and Analytics
5
+ Home-page: https://github.com/sharkutilities/statology
6
+ Author: shark-utilities developers
7
+ Author-email: statology <neuralNOD@outlook.com>
8
+ License: MIT License
9
+
10
+ Copyright (c) 2024 SharkUtilities
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
29
+
30
+ Project-URL: Homepage, https://github.com/sharkutilities/statology
31
+ Project-URL: Issues, https://github.com/sharkutilities/statology/issues
32
+ Project-URL: Changelog, https://github.com/sharkutilities/statology/blob/master/CHANGELOG.md
33
+ Keywords: numpy,array,utility,utilities,util,utils,wrappers,data science,data analysis,data scientist,data analyst,statistics,outliers,percentile,quantile,probability
34
+ Classifier: Development Status :: 1 - Planning
35
+ Classifier: Intended Audience :: Developers
36
+ Classifier: Intended Audience :: Education
37
+ Classifier: Intended Audience :: End Users/Desktop
38
+ Classifier: Intended Audience :: Information Technology
39
+ Classifier: Intended Audience :: Science/Research
40
+ Classifier: Operating System :: Unix
41
+ Classifier: Operating System :: POSIX
42
+ Classifier: Operating System :: Microsoft :: Windows
43
+ Classifier: Programming Language :: Python
44
+ Classifier: Programming Language :: Python :: 3
45
+ Classifier: Programming Language :: Python :: 3 :: Only
46
+ Classifier: Programming Language :: Python :: 3.9
47
+ Classifier: Programming Language :: Python :: 3.10
48
+ Classifier: Programming Language :: Python :: 3.11
49
+ Classifier: Programming Language :: Python :: 3.12
50
+ Classifier: License :: OSI Approved :: MIT License
51
+ License-File: LICENSE
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ pyproject.toml
3
+ setup.py
4
+ statology/__init__.py
5
+ statology.egg-info/PKG-INFO
6
+ statology.egg-info/SOURCES.txt
7
+ statology.egg-info/dependency_links.txt
8
+ statology.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ statology