Skip to content

Commit d508b9a

Browse files
authored
license fix
1 parent cebe482 commit d508b9a

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

setup.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,25 @@
1010

1111
setup(
1212
name="spicecode",
13-
version="2.1.5", # version 2.0.0 = all features from N2
13+
version="2.1.5", # Version 2.0.0 = all features from N2
1414
packages=find_packages(exclude=["spicecode-venv", "spicecode.egg-info"]),
1515
install_requires=install_requires,
1616
entry_points={
1717
'console_scripts': [
18-
'spice = cli.main:main', # This tells Python to run the main function in cli.main
18+
'spice = cli.main:main', # Entry point for CLI
1919
],
2020
},
21-
description="SpiceCode: The next generation of code analysis.", # Short one-liner
21+
description="SpiceCode: The next generation of code analysis.",
2222
long_description=long_description,
23-
long_description_content_type="text/markdown", # Required if README is in Markdown
23+
long_description_content_type="text/markdown",
2424
author="SpiceCodeCLI",
2525
author_email="spicecodecli@gmail.com",
26-
url="https://github.com/spicecodecli/spicecode", # Optional but helpful
26+
url="https://github.com/spicecodecli/spicecode",
27+
license="Apache-2.0", # Specify the license
2728
classifiers=[
2829
"Programming Language :: Python :: 3",
29-
"License :: Apache License", # Adjust if needed
30-
"Operating System :: Windows :: Linux :: Possibly MAC, not tested.",
30+
"License :: OSI Approved :: Apache Software License",
31+
"Operating System :: OS Independent",
3132
],
32-
33+
python_requires=">=3.7", # Optional but good practice
3334
)

0 commit comments

Comments
 (0)