From d508b9aa1e55af9dd08924654fdfd2afbee9b80e Mon Sep 17 00:00:00 2001 From: ManfredHair Date: Fri, 23 May 2025 19:31:08 -0300 Subject: [PATCH] license fix --- setup.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index 87ab8e3..79d56d2 100644 --- a/setup.py +++ b/setup.py @@ -10,24 +10,25 @@ setup( name="spicecode", - version="2.1.5", # version 2.0.0 = all features from N2 + version="2.1.5", # Version 2.0.0 = all features from N2 packages=find_packages(exclude=["spicecode-venv", "spicecode.egg-info"]), install_requires=install_requires, entry_points={ 'console_scripts': [ - 'spice = cli.main:main', # This tells Python to run the main function in cli.main + 'spice = cli.main:main', # Entry point for CLI ], }, - description="SpiceCode: The next generation of code analysis.", # Short one-liner + description="SpiceCode: The next generation of code analysis.", long_description=long_description, - long_description_content_type="text/markdown", # Required if README is in Markdown + long_description_content_type="text/markdown", author="SpiceCodeCLI", author_email="spicecodecli@gmail.com", - url="https://github.com/spicecodecli/spicecode", # Optional but helpful + url="https://github.com/spicecodecli/spicecode", + license="Apache-2.0", # Specify the license classifiers=[ "Programming Language :: Python :: 3", - "License :: Apache License", # Adjust if needed - "Operating System :: Windows :: Linux :: Possibly MAC, not tested.", + "License :: OSI Approved :: Apache Software License", + "Operating System :: OS Independent", ], - + python_requires=">=3.7", # Optional but good practice )