init commit
This commit is contained in:
commit
b637bdd7b6
3
README.md
Normal file
3
README.md
Normal 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
8
chipi/__init__.py
Normal 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
19
setup.py
Normal 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
2
tests/test.py
Normal file
@ -0,0 +1,2 @@
|
||||
def say():
|
||||
print("lol")
|
||||
Loading…
x
Reference in New Issue
Block a user