Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.",
],

)