File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 44with open ("requirements.txt" , encoding = "utf-16" ) as f :
55 install_requires = f .read ().splitlines ()
66
7+ # Read the README.md for PyPI long description
8+ with open ("README.md" , encoding = "utf-8" ) as f :
9+ long_description = f .read ()
10+
711setup (
812 name = "spicecode" ,
913 version = "2.1.5" , # version 2.0.0 = all features from N2
1418 'spice = cli.main:main' , # This tells Python to run the main function in cli.main
1519 ],
1620 },
21+ description = "SpiceCode: The next generation of code analysis." , # Short one-liner
22+ long_description = long_description ,
23+ long_description_content_type = "text/markdown" , # Required if README is in Markdown
24+ author = "SpiceCodeCLI" ,
25+ author_email = "spicecodecli@gmail.com" ,
26+ url = "https://github.com/spicecodecli/spicecode" , # Optional but helpful
27+ classifiers = [
28+ "Programming Language :: Python :: 3" ,
29+ "License :: Apache License" , # Adjust if needed
30+ "Operating System :: Windows :: Linux :: Possibly MAC, not tested." ,
31+ ],
1732
1833)
You can’t perform that action at this time.
0 commit comments