|
10 | 10 |
|
11 | 11 | setup( |
12 | 12 | 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 |
14 | 14 | packages=find_packages(exclude=["spicecode-venv", "spicecode.egg-info"]), |
15 | 15 | install_requires=install_requires, |
16 | 16 | entry_points={ |
17 | 17 | '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 |
19 | 19 | ], |
20 | 20 | }, |
21 | | - description="SpiceCode: The next generation of code analysis.", # Short one-liner |
| 21 | + description="SpiceCode: The next generation of code analysis.", |
22 | 22 | long_description=long_description, |
23 | | - long_description_content_type="text/markdown", # Required if README is in Markdown |
| 23 | + long_description_content_type="text/markdown", |
24 | 24 | author="SpiceCodeCLI", |
25 | 25 | 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 |
27 | 28 | classifiers=[ |
28 | 29 | "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", |
31 | 32 | ], |
32 | | - |
| 33 | + python_requires=">=3.7", # Optional but good practice |
33 | 34 | ) |
0 commit comments