23 lines
686 B
Python
23 lines
686 B
Python
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"
|
|
]
|
|
) |