chtoolbox 0.2.2__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.2
3
+ Version: 0.2.4
4
4
  License-File: LICENSE
@@ -121,4 +121,38 @@ def compare_lists_from_clipboard():
121
121
  unique_items.append(value)
122
122
 
123
123
  # Print the resulting dictionary
124
- return list_dict, unique_items, list(common_items)
124
+ return list_dict, unique_items, list(common_items)
125
+
126
+
127
+ def add_two_numbers(a,b):
128
+ """
129
+ Add two numbers together.
130
+ Args:
131
+ a (int): The first number.
132
+ b (int): The second number.
133
+ Returns:
134
+ int: The sum of the two numbers.
135
+ """
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.2
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.2',
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