init commit

This commit is contained in:
Dominik Krenn 2025-06-30 10:34:35 +02:00
commit b637bdd7b6
4 changed files with 32 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# chipi
The multitool nobody asked for. Includes stuff like `greet()`, `add()`, and other functions you'll forget are here.

8
chipi/__init__.py Normal file
View File

@ -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]

19
setup.py Normal file
View File

@ -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',
)

2
tests/test.py Normal file
View File

@ -0,0 +1,2 @@
def say():
print("lol")