multinut 0.1.0__tar.gz → 0.1.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.
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: multinut
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A completely unnecessary multitool module.
5
5
  Home-page: https://github.com/ChipperFluff/multinut
6
6
  Author: Chipperfluff
7
7
  Author-email: i96774080@gmail.com
8
8
  Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
10
9
  Requires-Python: >=3.6
11
10
  Description-Content-Type: text/markdown
12
11
  Dynamic: author
@@ -0,0 +1,2 @@
1
+ def add(x: int, y: int) -> int:
2
+ return x + y
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: multinut
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A completely unnecessary multitool module.
5
5
  Home-page: https://github.com/ChipperFluff/multinut
6
6
  Author: Chipperfluff
7
7
  Author-email: i96774080@gmail.com
8
8
  Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
10
9
  Requires-Python: >=3.6
11
10
  Description-Content-Type: text/markdown
12
11
  Dynamic: author
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='multinut',
5
- version='0.1.0',
5
+ version='0.1.1',
6
6
  packages=find_packages(),
7
7
  install_requires=[],
8
8
  author='Chipperfluff',
@@ -12,8 +12,7 @@ setup(
12
12
  long_description_content_type='text/markdown',
13
13
  url='https://github.com/ChipperFluff/multinut',
14
14
  classifiers=[
15
- 'Programming Language :: Python :: 3',
16
- 'License :: OSI Approved :: MIT License',
15
+ 'Programming Language :: Python :: 3'
17
16
  ],
18
17
  python_requires='>=3.6',
19
18
  )
@@ -1,8 +0,0 @@
1
- def greet(name):
2
- return f"Hello, {name}! You're using chipi."
3
-
4
- def add(x, y):
5
- return x + y
6
-
7
- def reverse_string(s):
8
- return s[::-1]
File without changes
File without changes
File without changes