complete setup.py

This commit is contained in:
ctunnell 2024-10-29 16:41:16 +13:00
parent 433b779bf8
commit acfadec4f3
3 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,23 @@
from setuptools import setup, find_packages
VERSION = '0.0.1'
DESCRIPTION = 'ToolBox for repetitive functions'
LONG_DESCRIPTION = 'A bunch of functions because I CBA to write these out everytime'
setup(
name='toolbox',
version=VERSION,
author='Craig Tunnell',
author_email='craig.tunnell@outlook.com',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[],
keywords=['python', 'toolbox'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Personal",
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows"
]
)

View File

@ -0,0 +1 @@
from toolbox import openFile

View File

@ -0,0 +1,3 @@
def openFile():
pass