refactor: remove unused functions and update add function type hints

bump version to 0.1.1 and clean up setup.py classifiers
This commit is contained in:
Dominik Krenn 2025-06-30 11:07:46 +02:00
parent b1675c6a62
commit 612bce4907
2 changed files with 3 additions and 10 deletions

View File

@ -1,8 +1,2 @@
def greet(name): def add(x: int, y: int) -> int:
return f"Hello, {name}! You're using chipi."
def add(x, y):
return x + y return x + y
def reverse_string(s):
return s[::-1]

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='multinut', name='multinut',
version='0.1.0', version='0.1.1',
packages=find_packages(), packages=find_packages(),
install_requires=[], install_requires=[],
author='Chipperfluff', author='Chipperfluff',
@ -12,8 +12,7 @@ setup(
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
url='https://github.com/ChipperFluff/multinut', url='https://github.com/ChipperFluff/multinut',
classifiers=[ classifiers=[
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3'
'License :: OSI Approved :: MIT License',
], ],
python_requires='>=3.6', python_requires='>=3.6',
) )