commit b637bdd7b65fd8e45eaeaff46aaaa82074781aca Author: Dominik Krenn Date: Mon Jun 30 10:34:35 2025 +0200 init commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..0b9633b --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# chipi + +The multitool nobody asked for. Includes stuff like `greet()`, `add()`, and other functions you'll forget are here. diff --git a/chipi/__init__.py b/chipi/__init__.py new file mode 100644 index 0000000..0c1c237 --- /dev/null +++ b/chipi/__init__.py @@ -0,0 +1,8 @@ +def greet(name): + return f"Hello, {name}! You're using chipi." + +def add(x, y): + return x + y + +def reverse_string(s): + return s[::-1] diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8f4cc4f --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +from setuptools import setup, find_packages + +setup( + name='chipi', + version='0.1.0', + packages=find_packages(), + install_requires=[], + author='Chipperfluff', + author_email='i96774080@gmail.com', + description='A completely unnecessary multitool module.', + long_description=open('README.md').read(), + long_description_content_type='text/markdown', + url='https://github.com/ChipperFluff/chipi-tool', + classifiers=[ + 'Programming Language :: Python :: 3', + 'License :: OSI Approved :: MIT License', + ], + python_requires='>=3.6', +) diff --git a/tests/test.py b/tests/test.py new file mode 100644 index 0000000..04607df --- /dev/null +++ b/tests/test.py @@ -0,0 +1,2 @@ +def say(): + print("lol")