From 4c1b3b695fe8860eaf16960ba61749437838d762 Mon Sep 17 00:00:00 2001 From: greydoubt <43443470+greydoubt@users.noreply.github.com> Date: Sat, 10 Feb 2024 03:12:44 -0800 Subject: [PATCH] Update setup.py --- setup.py | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index c541193..b7e9e1f 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,22 @@ from setuptools import setup, find_packages +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() + setup( - name="YourProjectName", - version="0.1.0", + name="m77", + version="0.0.0.1", + author="greydoubt", + author_email="your@email.com", + description="...", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/greydoubt/m77", packages=find_packages(), - # Add other parameters as needed + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires=">=3.6", )