monisha 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.
monisha-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 C͡linton Abraꫝam
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,2 @@
1
+ from .functions.function01 import *
2
+ from .functions.function02 import *
monisha-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.1
2
+ Name: monisha
3
+ Version: 0.0.1
4
+ Summary: python helper modules
5
+ Home-page: https://github.com/Clinton-Abraham
6
+ Author: Clinton-Abraham
7
+ Author-email: clintonabrahamc@gmail.com
8
+ License: MIT
9
+ Keywords: python,clinton,abraham
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Natural Language :: English
13
+ Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Topic :: Internet
23
+ Classifier: Topic :: Software Development :: Libraries
24
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
+ Requires-Python: ~=3.8
26
+ Description-Content-Type: text/markdown
27
+ License-File: LICENSE
28
+
29
+ <p align="center">
30
+ [CINTON ABRAHAM](https://telegram.me/Clinton_Abraham)
31
+ </p>
@@ -0,0 +1,3 @@
1
+ <p align="center">
2
+ [CINTON ABRAHAM](https://telegram.me/Clinton_Abraham)
3
+ </p>
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.1
2
+ Name: monisha
3
+ Version: 0.0.1
4
+ Summary: python helper modules
5
+ Home-page: https://github.com/Clinton-Abraham
6
+ Author: Clinton-Abraham
7
+ Author-email: clintonabrahamc@gmail.com
8
+ License: MIT
9
+ Keywords: python,clinton,abraham
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Natural Language :: English
13
+ Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Topic :: Internet
23
+ Classifier: Topic :: Software Development :: Libraries
24
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
+ Requires-Python: ~=3.8
26
+ Description-Content-Type: text/markdown
27
+ License-File: LICENSE
28
+
29
+ <p align="center">
30
+ [CINTON ABRAHAM](https://telegram.me/Clinton_Abraham)
31
+ </p>
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ Monisha/__init__.py
5
+ monisha.egg-info/PKG-INFO
6
+ monisha.egg-info/SOURCES.txt
7
+ monisha.egg-info/dependency_links.txt
8
+ monisha.egg-info/not-zip-safe
9
+ monisha.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ Monisha
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
monisha-0.0.1/setup.py ADDED
@@ -0,0 +1,38 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r") as o:
4
+ long_description = o.read()
5
+
6
+ DATA01 = "clintonabrahamc@gmail.com"
7
+
8
+ DATA02 = ['Development Status :: 5 - Production/Stable',
9
+ 'Intended Audience :: Developers',
10
+ 'Natural Language :: English',
11
+ 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
12
+ 'Operating System :: OS Independent',
13
+ 'Programming Language :: Python',
14
+ 'Programming Language :: Python :: 3',
15
+ 'Programming Language :: Python :: 3.8',
16
+ 'Programming Language :: Python :: 3.9',
17
+ 'Programming Language :: Python :: 3.10',
18
+ 'Programming Language :: Python :: 3.11',
19
+ 'Programming Language :: Python :: 3.12',
20
+ 'Topic :: Internet',
21
+ 'Topic :: Software Development :: Libraries',
22
+ 'Topic :: Software Development :: Libraries :: Python Modules']
23
+
24
+ setup(
25
+ name='monisha',
26
+ license='MIT',
27
+ zip_safe=False,
28
+ version='0.0.1',
29
+ classifiers=DATA02,
30
+ author_email=DATA01,
31
+ python_requires='~=3.8',
32
+ packages=find_packages(),
33
+ author='Clinton-Abraham',
34
+ long_description=long_description,
35
+ description='python helper modules',
36
+ url='https://github.com/Clinton-Abraham',
37
+ keywords=['python', 'clinton', 'abraham'],
38
+ long_description_content_type="text/markdown")