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):
return f"Hello, {name}! You're using chipi."
def add(x, y):
def add(x: int, y: int) -> int:
return x + y
def reverse_string(s):
return s[::-1]

View File

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