From 7dd345bcf0c6a0040388edb5234beda07ba9000d Mon Sep 17 00:00:00 2001 From: Sylvain <60986961+Sylvain-Deposit@users.noreply.github.com> Date: Mon, 4 Dec 2023 17:30:24 +0000 Subject: [PATCH] Added setup.py --- setup.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e013e2d --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="Chatoyant_Syla", # Replace with your own username + version="0.0.1", + author="Sylvain Rama", + author_email="rama.sylvain@gmail.com", + description="Small lib to create colormaps, lego-like.", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/driscollis/arithmetic", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires='>=3.8', +) \ No newline at end of file