diff --git a/__pycache__/print_color.cpython-310.pyc b/__pycache__/print_color.cpython-310.pyc new file mode 100644 index 0000000..ec983f2 Binary files /dev/null and b/__pycache__/print_color.cpython-310.pyc differ diff --git a/colorprinter/__init__.py b/colorprinter/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/print_color.py b/colorprinter/print_color.py similarity index 100% rename from print_color.py rename to colorprinter/print_color.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6f0bd69 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +from setuptools import setup, find_packages + +with open("README.md", "r") as fh: + long_description = fh.read() + +setup( + name="colorprinter", + version="0.1.0", + author="Lasse Edfast", + author_email="lasse@edfast.se", + description="A simple utility for printing text in various colors to the terminal", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/lasseedfast/colorprinter", + packages=find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires='>=3.6', +) \ No newline at end of file