chtoolbox 0.2.3__tar.gz → 0.2.4__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.
@@ -1,4 +1,4 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: chtoolbox
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  License-File: LICENSE
@@ -133,4 +133,26 @@ def add_two_numbers(a,b):
133
133
  Returns:
134
134
  int: The sum of the two numbers.
135
135
  """
136
- return a + b
136
+ return a + b
137
+
138
+ def multiply_two_numbers(a,b):
139
+ """
140
+ Multiply two numbers together.
141
+ Args:
142
+ a (int): The first number.
143
+ b (int): The second number.
144
+ Returns:
145
+ int: The product of the two numbers.
146
+ """
147
+ return a * b
148
+
149
+ def subtract_two_numbers(a,b):
150
+ """
151
+ Subtract two numbers.
152
+ Args:
153
+ a (int): The first number.
154
+ b (int): The second number.
155
+ Returns:
156
+ int: The difference between the two numbers.
157
+ """
158
+ return a - b
@@ -1,4 +1,4 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: chtoolbox
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  License-File: LICENSE
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='chtoolbox',
5
- version='0.2.3',
5
+ version='0.2.4',
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  'numpy',
File without changes
File without changes
File without changes