complete setup.py
This commit is contained in:
parent
433b779bf8
commit
acfadec4f3
23
setup.py
23
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"
|
||||||
|
]
|
||||||
|
)
|
|
@ -0,0 +1 @@
|
||||||
|
from toolbox import openFile
|
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
def openFile():
|
||||||
|
pass
|
Loading…
Reference in New Issue
Block a user