Skip to content

Commit d266610

Browse files
committed
v0.0.1 added calculator commands
0 parents  commit d266610

11 files changed

+86
-0
lines changed

CHANGELOG.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Change Log
2+
==========
3+
4+
0.0.1 (8/29/2021)
5+
-----------------
6+
- First Release

LICENCE.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2021 techpluscraft
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
global-include *.txt *.py

README.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is a util extension by techpluscraft with many functions

dist/techdevutil-0.0.1.tar.gz

2.15 KB
Binary file not shown.

setup.py

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from setuptools import setup, find_packages
2+
3+
classifiers = [
4+
'Development Status :: 5 - Production/Stable',
5+
'Intended Audience :: Education',
6+
'Operating System :: Microsoft :: Windows :: Windows 10',
7+
'License :: OSI Approved :: MIT License',
8+
'Programming Language :: Python :: 3'
9+
]
10+
11+
setup(
12+
name='techdevutil',
13+
version='0.0.1',
14+
description='A util library',
15+
long_description=open('README.txt').read() + '\n\n' + open('CHANGELOG.txt').read(),
16+
url='',
17+
author='techpluscraft',
18+
author_email='[email protected]',
19+
license='MIT',
20+
classifiers=classifiers,
21+
keywords='util',
22+
packages=find_packages(),
23+
install_requires=['']
24+
)

techdevutil.egg-info/PKG-INFO

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Metadata-Version: 1.1
2+
Name: techdevutil
3+
Version: 0.0.1
4+
Summary: A util library
5+
Home-page: UNKNOWN
6+
Author: techpluscraft
7+
Author-email: [email protected]
8+
License: MIT
9+
Description: This is a util extension by techpluscraft with many functions
10+
11+
Change Log
12+
==========
13+
14+
0.0.1 (8/29/2021)
15+
-----------------
16+
- First Release
17+
Keywords: util
18+
Platform: UNKNOWN
19+
Classifier: Development Status :: 5 - Production/Stable
20+
Classifier: Intended Audience :: Education
21+
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
22+
Classifier: License :: OSI Approved :: MIT License
23+
Classifier: Programming Language :: Python :: 3

techdevutil.egg-info/SOURCES.txt

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
CHANGELOG.txt
2+
LICENCE.txt
3+
MANIFEST.in
4+
README.txt
5+
setup.py
6+
techdevutil/__init__.py
7+
techdevutil.egg-info/PKG-INFO
8+
techdevutil.egg-info/SOURCES.txt
9+
techdevutil.egg-info/dependency_links.txt
10+
techdevutil.egg-info/top_level.txt
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

techdevutil.egg-info/top_level.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
techdevutil

techdevutil/__init__.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
def add_numbers(num1,num2):
2+
return num1 + num2
3+
4+
def subtract_numbers(num1,num2):
5+
return num1 - num2
6+
7+
def multiply_numbers(num1,num2):
8+
return num1 * num2
9+
10+
def divide_numbers(num1,num2):
11+
return num1 / num2
12+

0 commit comments

Comments
 (0)