diff --git a/setup.py b/setup.py index e69de29..505621d 100644 --- a/setup.py +++ b/setup.py @@ -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" + ] +) \ No newline at end of file diff --git a/src/toolbox/__init__.py b/src/toolbox/__init__.py index e69de29..da9c862 100644 --- a/src/toolbox/__init__.py +++ b/src/toolbox/__init__.py @@ -0,0 +1 @@ +from toolbox import openFile \ No newline at end of file diff --git a/src/toolbox/toolbox.py b/src/toolbox/toolbox.py index e69de29..a2b4039 100644 --- a/src/toolbox/toolbox.py +++ b/src/toolbox/toolbox.py @@ -0,0 +1,3 @@ + +def openFile(): + pass \ No newline at end of file