From 35cae2dcc04cfae3c5a1f88f49c3361634072c92 Mon Sep 17 00:00:00 2001 From: CodyKoInABox Date: Fri, 23 May 2025 18:40:14 -0300 Subject: [PATCH] update pypi info --- setup.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/setup.py b/setup.py index 68c4fbd..87ab8e3 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,10 @@ with open("requirements.txt", encoding="utf-16") as f: install_requires = f.read().splitlines() +# Read the README.md for PyPI long description +with open("README.md", encoding="utf-8") as f: + long_description = f.read() + setup( name="spicecode", version="2.1.5", # version 2.0.0 = all features from N2 @@ -14,5 +18,16 @@ 'spice = cli.main:main', # This tells Python to run the main function in cli.main ], }, + description="SpiceCode: The next generation of code analysis.", # Short one-liner + long_description=long_description, + long_description_content_type="text/markdown", # Required if README is in Markdown + author="SpiceCodeCLI", + author_email="spicecodecli@gmail.com", + url="https://github.com/spicecodecli/spicecode", # Optional but helpful + classifiers=[ + "Programming Language :: Python :: 3", + "License :: Apache License", # Adjust if needed + "Operating System :: Windows :: Linux :: Possibly MAC, not tested.", + ], )